ARRAY IMPLEMENTATION OF LIST/ Explained in Tamil and English

Поділитися
Вставка
  • Опубліковано 10 лют 2025
  • CS3351 DATA STRUCTURES / UNIT 1/ Array Implementation of List
    If you find my videos are useful for you kindly Subscribe, like, share and Comment.
    Study with JBR Tri Sea, #R2021, #Regulation 2021, #CS3351 Data Structures, #CS3351 Data Structures in Tamil, #Anna University, #CSE 3rd Sem, #CS3352 , # , #CS3391, CS3361, Data Structures Laboratory , #AD3251, #Data structures Design, #R2021, #Data Structures Design in Tamil, CS 3351 Data Structures, CS3351, Data structures in tamil , Data structures important questions, Data structures 2 mark questions, Data structures part A questions, Data structures part B questions, Data structures hand written notes, Data structures anna university, Data structures tutorial, # Array Implementation of List
    #onlineClasses #cse #cseconcepts #WithMe #intamil #Anna Uiversity # I sem #3rdsem CSE #
    Semester, First year, Cse concepts, Programming in C, Python programming, Data structures, Anna University, Online class, Ii sem, Information technology, Important questions, 2 mark questions, Part A questions, Part B questions, How to clear arrear exam, Anna university exam preparation, UA-cam teacher, UA-cam teaching, UA-cam education channel, UA-cam educational videos, UA-cam educational video making, UA-cam educational tutors, Motivational videos, Motivation, Study for dreams , Study channel, Study motivation, Study with me, Educate yourself, Educate yourself motivation, Educate your mind, Teachers day ,Thank you teacher, How to pass, how to pass problem solving and python programming, Python tutorial, cse teacher, won the arrears, clear arrears, problem solving and python programming in tamil, ge8151 problem solving and python programming important questions in tamil, anna university 1st semester python,

КОМЕНТАРІ • 35

  • @INFANTLUDIMELBA
    @INFANTLUDIMELBA 3 роки тому +3

    Very useful mam thank you fo your dedication mam😊

  • @lakshithak1525
    @lakshithak1525 3 роки тому +8

    Mam... please take object oriented programming classes...

  • @aravinthkumar7552
    @aravinthkumar7552 2 роки тому +1

    You are ultimate.

  • @sakthivelk5223
    @sakthivelk5223 2 роки тому +1

    நன்றிகள் 😍

  • @deepa_14002
    @deepa_14002 4 роки тому +3

    Mam I understand your lecture and pls give some notes mam

  • @jooprasanth5943
    @jooprasanth5943 Місяць тому

    Will they give mark for this ?
    Becoz it is not contain any algorithm 🤷

  • @vikranthvenni
    @vikranthvenni 2 місяці тому

    Can you observe in this topic mam 🙏

  • @hariharan4368
    @hariharan4368 4 роки тому

    Super explanation mam

  • @ReguRaam-b7y
    @ReguRaam-b7y Рік тому

    mam rotines are in java. but in sylabus its want to be in python.

  • @AkashKumar-vb4br
    @AkashKumar-vb4br 4 роки тому +3

    Mam neenga array la elements fill pannum pothu eppavum yen last array blank ah vidringa ?? Suppose naan list[5]= {5,10,15,20,25} intha maathiri 5 elements kuduthu array va fill pannita neenga deletion operation panna mudiyuma mam .

    • @studywithjbrtrisea
      @studywithjbrtrisea  4 роки тому +2

      yes you can do.

    • @AkashKumar-vb4br
      @AkashKumar-vb4br 4 роки тому +2

      @@studywithjbrtrisea Mam but array la elements fulla irunthuchuna last la blank irukkathu apo routine maarum thana mam like for(i=pos;i

    • @AkashKumar-vb4br
      @AkashKumar-vb4br 4 роки тому +2

      @@studywithjbrtrisea array elements fulla iruntha insertion eppadi panna mudiyum ?? List[5] la naan 5 elements fill pannita ithuku center la naan eppadi innoru element fill panna mudiyum

    • @studywithjbrtrisea
      @studywithjbrtrisea  4 роки тому +2

      if the size of the array is 100 then you can insert maximum 100 elements in the array. we can not insert more than the size of the array. this is the disadvantage of using array. to overcome this we are using linked list.

    • @studywithjbrtrisea
      @studywithjbrtrisea  4 роки тому +1

      if the array is full then we can not insert more elements.

  • @mohan-sg8ih
    @mohan-sg8ih 2 роки тому +3

    Exam ku neenga nadathirukartha ezhuthana pothuma mam

  • @swornimshah8898
    @swornimshah8898 Рік тому

    FOr insertion:
    for(i=n - 1, i > pos; i--) {
    arr[i] = arr[i-1];
    }
    arr[pos] = item

  • @arunsuresh8547
    @arunsuresh8547 Рік тому

    Exam la Routine ku pathila example code eluthalama .. illa routine than eluthanuma mam .. pls reply me mam .. and find(int key , int a[]) munadi yen return type podala ? at 15.00 timing ..

    • @shahithyar2496
      @shahithyar2496 Рік тому

      Routine vera code vera

    • @harinirabbie
      @harinirabbie 6 місяців тому

      Routine means a block of code that performs specific tasks. example code is just for your understanding but you should write every methods to implement

  • @ArunKumar-wd4gp
    @ArunKumar-wd4gp 5 років тому

    Thanks mam

  • @shahithyar2496
    @shahithyar2496 Рік тому +2

    Can you please share your notes in a pdf

  • @KandhaMaaran-10
    @KandhaMaaran-10 3 роки тому

    Mam, deletion operation la step 2 la shift element from 3rd position to 2nd position dhaana mam?we consider the first position is 0 so as follows i think... How you can write 4th position to 3rd? Pls sollunga mam

    • @studywithjbrtrisea
      @studywithjbrtrisea  3 роки тому +1

      can you tell the timing?

    • @KandhaMaaran-10
      @KandhaMaaran-10 3 роки тому

      @@studywithjbrtrisea 13.08 mam

    • @studywithjbrtrisea
      @studywithjbrtrisea  3 роки тому +2

      @@KandhaMaaran-10 Yes. to delete 2nd index value we shift 3rd index to 2nd index. then 4th index to 3rd index and so on.
      To do this we use the for loop. we start from the correct position after that as the loop continues till the last position all the elements shift one position left by the loop.

    • @KandhaMaaran-10
      @KandhaMaaran-10 3 роки тому

      @@studywithjbrtrisea ok mam understood thankyou so much mam

  • @Newmobiles-
    @Newmobiles- 10 місяців тому

    This full PDF vanum mam

  • @shinchu5617
    @shinchu5617 Рік тому

    Mam can you upload the notes pdf

  • @MAREESWARAN-g9b
    @MAREESWARAN-g9b Місяць тому

    mam intha pdf venum mam

  • @caaspirantsheikh8185
    @caaspirantsheikh8185 2 роки тому

    Hey assalamu alykum plz reply plz