#6 Linked List Implementation in Java Part 2 | Data Structures

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ก.ย. 2024
  • Complete playlist of Data Structure Using Java : goo.gl/3eQAYB
    Code : goo.gl/mP1JAC
    Linked List implementaion in Java without using Collection
    We will use Eclipse IDE here
    In this video we will see :
    - Operations of Linked list
    - insert at start
    - insert at Index
    - An example explaining above operation
    Linked list is a linear collection of data elements, in which linear order is not given by their physical placement in memory.
    Instead, each element points to the next.
    It is a data structure consisting of a group of nodes which together represent a sequence.
    Under the simplest form, each node is composed of data and a reference (in other words, a link) to the next node in the sequence.
    This structure allows for efficient insertion or removal of elements from any position in the sequence during iteration.
    Editing Monitors :
    amzn.to/2RfKWgL
    amzn.to/2Q665JW
    amzn.to/2OUP21a.
    Check out our website: www.telusko.com
    Follow Telusko on Twitter: / navinreddy20
    Follow on Facebook:
    Telusko : / teluskolearn. .
    Navin Reddy : / navintelusko
    Follow Navin Reddy on Instagram: / navinreddy20
    Subscribe to our other channel:
    Navin Reddy : www.youtube.co....
    Telusko Hindi :
    www.youtube.co....
    Donation:
    PayPal Id : navinreddy20
    Patreon : navinreddy20
    www.telusko.com...

ความคิดเห็น • 186

  • @LynN-he7he
    @LynN-he7he 6 ปีที่แล้ว +94

    When you move your cursor to paint, can you highlight the cursor? It's hard to follow where you are pointing to.

    • @ajithm2334
      @ajithm2334 4 ปีที่แล้ว +1

      Same point..

    • @rohitroyYT001
      @rohitroyYT001 3 ปีที่แล้ว +1

      Same point.

    • @LazizbekYusupov92
      @LazizbekYusupov92 2 ปีที่แล้ว

      Yeah, the same problem.

    • @vedapriya888
      @vedapriya888 11 หลายเดือนก่อน

      Actually pointer can be seen if we see very carefully.I think it's better to change the background to cream colour so that the pointer would be highlighted more

  • @brucema4730
    @brucema4730 4 ปีที่แล้ว +1

    Your channel has some really great content, but the way you speak is like playing the whole video in 1.5 of the original speed...still many thanks for the detailed explanation and demonstration of how it works in Java!

  • @HafizurRahman-dr3xe
    @HafizurRahman-dr3xe ปีที่แล้ว

    We should go always in depth. Thanks a lot

  • @gurupratapcr6178
    @gurupratapcr6178 2 ปีที่แล้ว

    Perfect explanation, thank you so much!

  • @anitharednam4347
    @anitharednam4347 3 ปีที่แล้ว

    Super job

  • @tanujaks504
    @tanujaks504 3 ปีที่แล้ว

    i didn't get can you explain this LinkedList topic slowly, actually i know about the working of linkedlist but i didn't get how to implemets in coding part..

  • @pratiksaha4199
    @pratiksaha4199 6 ปีที่แล้ว

    i'm getting an exception for the show method.
    public void show() {
    Node n = head;
    while(n!=null) {
    System.out.println(n.data);
    n=n.next;
    }
    System.out.println(n.data);
    }
    Can you suggest some other alternatives?

    • @ayushbagwari3496
      @ayushbagwari3496 6 ปีที่แล้ว

      Write node instead of n in while block

  • @bossysmaxx3327
    @bossysmaxx3327 5 ปีที่แล้ว

    sir I really didn't understand it, I am so much struggling with DS but I know the theorems that how Link list works, but I am unable to Implementation it in programming....

    • @msugal
      @msugal 5 ปีที่แล้ว

      Keep practicing and you will get it.

    • @manzero134gd
      @manzero134gd 5 ปีที่แล้ว

      Reading it out loud and writing them down (tracing) really helps.

  • @hanumantsharma7145
    @hanumantsharma7145 4 ปีที่แล้ว

    You are using the words ""This" and "That" without mentioning the exact thing which makes it very difficult to undertand that you are reffering to.

  • @anuragbhattacharjee2708
    @anuragbhattacharjee2708 6 ปีที่แล้ว +12

    put else after the "if" block for the rest of the code of insertAt method or else the added element will get added twice in the list..

  • @maya.n
    @maya.n 5 ปีที่แล้ว +55

    You should add return; in the if(index==0) because it is going to continue doing everything after that code and it is going to put the element twice.
    The code should be like this:
    if(index==0)
    {
    insertAtStart(data);
    return;
    }
    Other than that, great video. It helped me a lot. Thanks.

    • @aleksandarmilosavljevic1996
      @aleksandarmilosavljevic1996 5 ปีที่แล้ว +2

      Your comment was very helpfull to me, thanks! :)

    • @maya.n
      @maya.n 5 ปีที่แล้ว

      @@aleksandarmilosavljevic1996 You're welcome. I am glad I could help, but I think in the next video he fixes it and makes it correct.

    • @dawah7556
      @dawah7556 5 ปีที่แล้ว +1

      thanks for help

    • @jefflee738
      @jefflee738 5 ปีที่แล้ว

      you garbage

    • @jefflee738
      @jefflee738 5 ปีที่แล้ว

      just joking

  • @yatinpandey6499
    @yatinpandey6499 3 ปีที่แล้ว +3

    It seriously was very confusing when you were stating the n.next part.
    Spent my 3 straight hours and still didn't got anything after node.next=n.next😶
    Although,Thanks for your efforts sir.
    Love and Respect 🙏🏻💕

  • @navjhs
    @navjhs 6 ปีที่แล้ว +18

    Great Video... just one thing--- diagram should be crystal clear while explaining or actually change the pointer of drawing pen in your MS paint as that is hardly visible.

    • @amanmunnolli
      @amanmunnolli 3 ปีที่แล้ว

      Yeah, struggled a lot to keep up with the pointer 😅

  • @Misdaque
    @Misdaque 3 ปีที่แล้ว +7

    Great Video! No doubt
    Just one improvement we can do in this.
    In insertAt() method try to put the if condition at the beginning of the line and after calling insertAtStart() method put a return statement.
    if(index == 0){
    insertAtStart(data);
    return;
    }
    Edit: I saw in the next video you have made the correction and accepted your mistake. This makes you even greater!

  • @aaronquitoriano1606
    @aaronquitoriano1606 4 ปีที่แล้ว +11

    Can't see the cursor when you are pointing in paint. :(

  • @crazylife7902
    @crazylife7902 4 ปีที่แล้ว +1

    Can you use a custom cursor. Its provided by the windows itself. That's the only addition this video now needs. Its really difficult to follow this video without that cursor when it travels of to the right side of the window. If you update this video with the new cursor, please share the link to the new video herewith. Thank you!

  • @muhammadwaqar5612
    @muhammadwaqar5612 4 ปีที่แล้ว +4

    Although you've taught very well thanks a lot, but there's a bug in addAt() method, what if someone input index which isn't in the list? there'll be nullPointerException.
    here I've applied my own logic, please check if it's okay? (working fine in IDE)
    void addAt(int i, int value)
    {
    Node node = new Node();
    node.data = value;

    if(head == null)
    {
    head = node;
    System.out.println("List is empty, node added at index 0");
    }
    else
    {
    Node n = new Node();
    n = head;

    while(n.next != null)
    {
    if (index == i-1)
    {
    node.next = n.next;
    n.next = node;
    break;
    }
    else if(i == 0)
    {
    addFirst(value);
    break;
    }
    n = n.next;
    index++;
    }
    if(n.next == null)
    {
    System.out.println("Given index is out of list");
    }
    }

  • @mindgym4543
    @mindgym4543 4 ปีที่แล้ว +1

    Great video, but we need to handle outofindex error Use below code
    in indexAt method
    for (int i = 0; i < aIndex-1; i++) {
    mTempNode = mTempNode.mNext;
    if(mTempNode== null){
    System.out.println("Please insert valid index!!
    Unable to insert");
    return;
    }
    }

  • @void_godzpower7473
    @void_godzpower7473 5 ปีที่แล้ว +9

    Best explanation of the topic so far, congrats, keep up the great work

  • @shuvammohapatra6736
    @shuvammohapatra6736 4 ปีที่แล้ว +1

    Sir, i love ur videos bt please take into account the following probs faced by all
    Your cursor is not visible in the white background of the pain. So we are unable to know which node exactly arw you referring.
    You are calling the nodes as this node. You should call them by their no. We do not know what you are referring.
    You are writing the program first time and have not run it before. So you seem less confident. As a result it is also difficult for us to trust you until the program is run.
    Explain a bit detail into the code rather than just experimenting live in front of camera which causes loss of time.
    Stop calling all the programs as simple as that if you are not feeling confident enough in your videos.

  • @bilalahmed2263
    @bilalahmed2263 4 ปีที่แล้ว +1

    please Clear my point.. why it work as node.next= n.next... why it did't work as n.next=node.next ? in insertatstart method

  • @rissandimo
    @rissandimo 5 ปีที่แล้ว +11

    Excellent video, it was very informative! Just to note (for others), in the insertAt(int data ) method, once we check if the index == 0 and if so we pre-append the data. At that point we have to type return; Because if not, the execution will still continue and add the value again in the for loop.

  • @paulz6045
    @paulz6045 4 ปีที่แล้ว +1

    first, you need to implement list.size(), and then check if index > list.size(){ thow new Exeption() }!

  • @venkat4043
    @venkat4043 3 ปีที่แล้ว +2

    at 8:34 , we need to implement the rest of the code in the else block, otherwise, the data will be added at index 0 and as well as index 1

  • @pradeepweerasinghe4201
    @pradeepweerasinghe4201 2 ปีที่แล้ว +2

    At first it was like rocket science to me😅,After watching these videos several times finally got it,Thank you sir.

  • @chetanjha6019
    @chetanjha6019 4 ปีที่แล้ว +2

    Sir u are god in teaching

  • @nebilgokdemir4527
    @nebilgokdemir4527 4 ปีที่แล้ว +3

    this is the best explanation of Link List thank you for sharing

  • @raamanujbhattacharya5606
    @raamanujbhattacharya5606 4 ปีที่แล้ว +1

    didn't understand at 7:43 min i.e; n.next=node;

  • @milaismyname
    @milaismyname 6 ปีที่แล้ว +4

    Perfect explanation, thank you so much!

  • @learnandearnakashrdpatel6826
    @learnandearnakashrdpatel6826 5 ปีที่แล้ว +2

    Very nice explanation sir I feel very good while seeing this video because how well explained you it make me very clear and because of I watched your video able to make program of linked list feel very proud I pray to continue making this type of video which will help students like me to get knowledge and make them self and knowledgeable person thank you

  • @Sangham_Pooja
    @Sangham_Pooja หลายเดือนก่อน

    Hello sir
    In insertAt method for the 0 index we need to write a code
    If (index == 0) {
    node.next = head;
    head = node;
    }
    If we call insertAtStart method then it will create two objects.
    The first object will be created when we call the inserat method and the second object will be created when we call the insertAtStart method from if block.

  • @mohammedmudassirkhatri6871
    @mohammedmudassirkhatri6871 5 ปีที่แล้ว +1

    why are we not making an object of head just like node ???

  • @jameelakewl
    @jameelakewl 4 ปีที่แล้ว

    Is this code right?
    public void insertAtStart(int data)
    {
    Node node=new Node() ;
    node.data=data;
    if(head==null)
    {
    head=node;
    head.next=null;
    }
    else{
    Node.next=head;
    head=node;
    }
    }

  • @Monawa3atCOM
    @Monawa3atCOM 4 ปีที่แล้ว

    NOTICE: u must put FOR boucle at else of (if index==0) because if you dont it will be dublicate the same number on pos 0 and 1....am i right???????

  • @jayendrapratapsinghraghav2037
    @jayendrapratapsinghraghav2037 3 ปีที่แล้ว

    I think this logic fails because if i enter index 12 or any value which is greater than linked list size then it will be fails i think.It will crash definately
    Exception would be like below
    Exception in thread "main" java.lang.NullPointerException
    at linkedListImplementation.MyLinkedListImplementation.insertAtPosition(MyLinkedListImplementation.java:50)
    at linkedListImplementation.JavaListMainClass.main(JavaListMainClass.java:15)

  • @travelnlearn
    @travelnlearn 2 ปีที่แล้ว

    Thanks for this wonderful video. May gbu with lots of success love and life. Keep Rocking

  • @maheshbabumeruva4968
    @maheshbabumeruva4968 7 หลายเดือนก่อน

    Why are you not using linked list class in util package? It's very simple to perform all those operations right? No need to write this much of code, Is there any reason?

  • @AnkitKumar-xp9iv
    @AnkitKumar-xp9iv 5 ปีที่แล้ว +2

    Your explanation is great sir with the diagram which helped a lot in understanding the concept

  • @subhamagarwal476
    @subhamagarwal476 4 ปีที่แล้ว +3

    No one can explain better than you.!!Thank you sir ..finally i understood the concept of LL

  • @adrianwilli9425
    @adrianwilli9425 4 ปีที่แล้ว

    my solution to fix the insertAt method. Im just using a var to save the size of the list
    public void insertAt(int index, int data) {
    Node node = new Node();
    node.data = data;
    node.next = null;
    if(index==0){
    insertAtStart(data);
    }else {
    Node n = head;
    if(index > listSize) {
    System.out.println("Index: " + index +" not existing");
    }else {
    for(int i = 0; i

  • @narendra9903
    @narendra9903 5 ปีที่แล้ว +4

    Am confused..At 7.42 you wrote node.next = n.next . means next element of n is assigned to node.cant we write node= n.next?

  • @swayamprakashsahoo9002
    @swayamprakashsahoo9002 3 ปีที่แล้ว +1

    Thank u sir for kind effort to teach us... I am really happy having understood this part

  • @jasrulzam
    @jasrulzam 2 ปีที่แล้ว

    Hi,
    When you do insert a value at index, n already points to head before for loop, so in the first iteration n would have traversed to index 1 right? I did not understand this....pls helpout

  • @sharathkalikota3727
    @sharathkalikota3727 4 ปีที่แล้ว

    already we have inbuilt functions to add,delete etc....Then what is the use to write our own class as LinkedList I mean What is the use to write LinkedList classs rather thn using inbuilt class @Telusko

  • @jaitehkaba8753
    @jaitehkaba8753 4 ปีที่แล้ว

    demn dude, thanks alot. too easy. your writting could be better, cursor pointer blah blah blah

  • @anduempire4373
    @anduempire4373 3 ปีที่แล้ว

    In insertAt method, if given index is 3 and only one node in LinkedList then what happens??
    in this scenario user inserted at 3rd index but element added at 1st index
    so handle this scenario as well.

  • @sourabhsharma2649
    @sourabhsharma2649 5 ปีที่แล้ว +1

    sir please upload videos of doubly and circular linked list

  • @no_more_anymore
    @no_more_anymore 2 ปีที่แล้ว

    @2:22 It's also not necessary to have the code: 'node.next = null;' right?

  • @tanvirkazirocks
    @tanvirkazirocks 2 ปีที่แล้ว

    With all respect, we have to put the remaining code in the else block for insertAt() method after if condition

  • @akshaycoder7919
    @akshaycoder7919 4 ปีที่แล้ว +1

    Thank you sir for explaining in
    Such a simple words

  • @mindgym4543
    @mindgym4543 4 ปีที่แล้ว

    Complete indexAt method, however according to my knowledge, suggestions appreciated:
    void insertAt(int aIndex, int aData) {
    Node mNode = new Node();
    mNode.mData = aData;
    mNode.mNext = null;
    if (aIndex < 0) {
    System.out.println("Please provide proper positive index");
    } else {
    if (head == null) {
    if (aIndex == 0) {
    head = mNode;
    } else {
    System.out.println("Linked list is empty, can not insert at " + aIndex);
    }
    } else {
    if (aIndex == 0) {
    insertAtFirst(aData);
    } else {
    Node mTempNode = head;
    for (int i = 0; i < aIndex - 1; i++) {
    mTempNode = mTempNode.mNext;
    if (mTempNode == null) {
    System.out.println("Please insert at valid index!!
    Unable to insert");
    return;
    }
    }
    mNode.mNext = mTempNode.mNext;
    mTempNode.mNext = mNode;
    }
    }
    }
    }

  • @sooriyakumarkarnan7885
    @sooriyakumarkarnan7885 6 ปีที่แล้ว +1

    thank you very much sir
    i like very much your teaching method and your video is very helpful to my programming studies

  • @ashutoshsahoo9629
    @ashutoshsahoo9629 3 ปีที่แล้ว

    If I am using the insertAtStart() multiple times, it's not executing

  • @AllInOne-jg5qx
    @AllInOne-jg5qx 3 ปีที่แล้ว

    You have to put the else block after if and put rest of the code to else block otherwise the added element will be added twice.

  • @AvinashKumar-uz9fq
    @AvinashKumar-uz9fq 5 ปีที่แล้ว +1

    What if Index is more than the number of element. NullPointerException will be thrown. So code is incomplete for method insertAt().

    • @crateer
      @crateer 5 ปีที่แล้ว

      This is a tutorial and NOT a complete follow along replecation of any Collection
      Also what you are saying is literally a maximum of 2 lines of extra code to implement.

  • @asandathabiso8689
    @asandathabiso8689 5 หลายเดือนก่อน

    naming variables !!!!!!!!!!!
    everything this node that node then boom n!!!

  • @sathish8572
    @sathish8572 4 ปีที่แล้ว

    insert at index 0 the method adding twice because before if condition a node as been created and data as been assigned and after if condition again once again data as been inserting due to insert at start!!!

  • @javalearningandearning1629
    @javalearningandearning1629 2 ปีที่แล้ว

    Please use other curser instead of point. The explanation is too good.

  • @rupaligujar4707
    @rupaligujar4707 4 ปีที่แล้ว

    well explained but sometimes your cursor is invisible 😐

  • @coderbuddy3875
    @coderbuddy3875 4 ปีที่แล้ว +1

    Great explanation at TH-cam !!

  • @mewnine7278
    @mewnine7278 6 ปีที่แล้ว +1

    You Explain Better Than My Professor Thanks

  • @kchemutai3483
    @kchemutai3483 2 ปีที่แล้ว

    Thanks so much, best tutorial so far on this topic. One bug on InsertAtIndex, if the user specifies an index out of range like index 12. I have captured it buy inserting the element at the end of the list

  • @dinkarinjosh
    @dinkarinjosh 4 ปีที่แล้ว

    he explains in the next video, there is a slight mistake. the if loop if checking index ==0, should accompany with an else, else the element gets added twice.

  • @ayushigolwara
    @ayushigolwara 4 ปีที่แล้ว

    There is one issue in the code in inserAt method, if input is 0th position u need to add return in the if condition otherwise the data will be added to the list twice
    if(index==0)
    {
    insertAtStart(data);
    return;
    }

  • @carolinaestrada3509
    @carolinaestrada3509 5 ปีที่แล้ว

    Can you explain when you did -------> node.data = data ? Is this similar to when you have setters and put [ this.variable = variable; ] ? I didn't know you could put an, Object.AnotherDataType, to equal that data type (AnotherDataType). Can you explain what node.data does specifically please?

  • @johncrowley5958
    @johncrowley5958 5 ปีที่แล้ว

    My code is the same as yours. My insert at end is non-static, but for some reason my insertmiddle and insert start have to be static! Why is this? I feel like its not correct. I'm using JDK 11

  • @rakeshp8582
    @rakeshp8582 4 ปีที่แล้ว

    Hi , i did same thing what you did in your video...i have tried to add element to 0 index, but, it prints the element 0, 1 index

  • @kanhaiyasharma5834
    @kanhaiyasharma5834 4 ปีที่แล้ว

    very nice explanation but in inserAt(int index,int data) method we have to add for loop & Node n = head; into else statement otherwise data will be added two times.

  • @manojkumarvavilapalli3192
    @manojkumarvavilapalli3192 3 ปีที่แล้ว

    ni8 entha track chesina okka point ekkado miss ipothuna.... Mee video okka 5min chusa, path clear ipoiendi.... Thank you bro

  • @vishnuv918
    @vishnuv918 3 ปีที่แล้ว

    Please upload all data structures in java sir

  • @Akichu95
    @Akichu95 6 ปีที่แล้ว +1

    I have the same code as you, however when i assign position (0, 33)
    The data will be entered twice at the start before displaying the rest of the list
    Edit: the Node n = head and for loop should be in an "else" statement after the if statement

    • @kevinwu5017
      @kevinwu5017 6 ปีที่แล้ว

      please read Ben Trono's reply.

    • @vishu194
      @vishu194 6 ปีที่แล้ว

      that is bcoz sir forgot to write the return statement inside if statement where we comparing the 0 with index. you just write this --> return; after calling the method insertAtStart(); your problem will be solved then.

    • @crateer
      @crateer 5 ปีที่แล้ว

      return; or else

  • @ashankavindu2409
    @ashankavindu2409 3 ปีที่แล้ว

    Man...you like a God to me.....❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @HafizurRahman-dr3xe
    @HafizurRahman-dr3xe ปีที่แล้ว

    Your Effort is Absolutely so helpful. Thaks A Lot

  • @rahulborule8619
    @rahulborule8619 3 ปีที่แล้ว

    How to delete a node at specific index?

  • @zainabissa162
    @zainabissa162 ปีที่แล้ว

    Great explanation Thank you.

  • @bhanuprakashkatika
    @bhanuprakashkatika ปีที่แล้ว

    thank you very much sir for detailed explanation

  • @satoshinakamoto171
    @satoshinakamoto171 6 ปีที่แล้ว

    i think you should have drawn again as it was harder to see in the drawings. also maybe use a mouse pointer color as following the mouse pointer is difficult

  • @dja781
    @dja781 6 ปีที่แล้ว

    The way you teach is good. However the diagrams used are unclear and distracting. Please use different colors . It all becomes too difficult to understand otherwise.

  • @random-0
    @random-0 5 ปีที่แล้ว +1

    return should be added in if(index==0)

    • @ArrennBaral
      @ArrennBaral 5 ปีที่แล้ว

      Yeah, I was getting two data printed, thanks

  • @shreyanshnigam620
    @shreyanshnigam620 4 ปีที่แล้ว

    I m getting a exception main thread i dont know how i m so confused help me here Exception is
    java.lang.NoClassDefFoundError

  • @sudhakarreddy5781
    @sudhakarreddy5781 3 ปีที่แล้ว

    Hello Navin, can you make a video by implementing this methods in recursive way.
    for example prependElement(int value)-- recursively.

  • @AdamRubiks
    @AdamRubiks 3 ปีที่แล้ว

    moodesh poweresh

  • @FaizanKhan-gfaizank
    @FaizanKhan-gfaizank ปีที่แล้ว

    The best video explanation for linkedlist in java so far...

  • @micoruzic5548
    @micoruzic5548 4 ปีที่แล้ว

    great video you helped me a lot but please change your cursor when you go to paint it's hard to follow it
    thanks

  • @shefalijain11
    @shefalijain11 3 ปีที่แล้ว

    Understood, thank you!

  • @khyatimamaniya7155
    @khyatimamaniya7155 6 ปีที่แล้ว

    Hey!! I have one doubt,how do you access index of any node as you already said linkedlist doesn't always be in sequence so how this index is in sequence and how do u know the index of any node , as far as i know if we want to insert at any position we provide info of data i.e after 18 insert should be done or after any other node that means we are providing data, i don't understand in linked list how this index can come than what is the diff between this and array if we'll provide index?????

  • @duffsoundsentertainment8718
    @duffsoundsentertainment8718 5 ปีที่แล้ว

    Everything's great but the pointer.......can't see it.....too hard to see....

  • @keerthikayoganathan4259
    @keerthikayoganathan4259 3 ปีที่แล้ว

    thankyou so much sir!

  • @thatpanditTV
    @thatpanditTV 4 ปีที่แล้ว

    this this this this....till eternity

  • @vinodpandey1506
    @vinodpandey1506 2 ปีที่แล้ว

    what if index==1??

  • @farabisteam6673
    @farabisteam6673 4 ปีที่แล้ว

    Just make it clearer or different "null" sound with "node" sound, sometimes i misundertand.

  • @soumyadebbasu7882
    @soumyadebbasu7882 4 ปีที่แล้ว

    We can also create a parameterized constructor inside Node class to define the data and link part, so we need to write only one line of code, while creating the object, in each of the methods of linked list class.

  • @shashankdahake8985
    @shashankdahake8985 7 หลายเดือนก่อน

    Thank you so much ..

  • @voice.ofAishu
    @voice.ofAishu 4 ปีที่แล้ว

    Easiest but Efficient explanation...Thanks a lot

  • @saskojakimov6057
    @saskojakimov6057 2 ปีที่แล้ว

    😂😂 when he says travels

  • @MrTauquir
    @MrTauquir 6 ปีที่แล้ว

    Its outstanding video but pace of presentation should be little slow.

  • @sachinkumarsingh538
    @sachinkumarsingh538 6 ปีที่แล้ว

    hi sir
    thanks for such nice video
    but i would like to add a point what if someone is trying to add at a particular index and the head value is null or if the passed index is greater than available data in the list

  • @pavanpatidar1793
    @pavanpatidar1793 4 ปีที่แล้ว

    please make more on ds

  • @nandkishor838
    @nandkishor838 3 ปีที่แล้ว

    thank you sir.

  • @palashkhatri7820
    @palashkhatri7820 4 ปีที่แล้ว

    Really nice explanation, Just paint representation can be lill more clean.