Dinesh Varyani
Dinesh Varyani
  • 653
  • 9 739 363
Delete a Node from the end of a Singly Linked List in Python | Animation | Linked List in DSA
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties -
1. It contains a sequence of nodes.
2. A node has data and a reference that points to the next node in a list.
3. The first node is the head node. It holds the complete list.
4. The last node has data and the next points to null or None.
5. It is a one-way list or forward direction list.
►Full DSA Course - ua-cam.com/play/PL6Zs6LgrJj3tDXv8a_elC6eT_4R5gfX4d.html
►Follow me on Instagram - bit.ly/intrvwkckstrt
►Follow me on LinkedIn - bit.ly/fllwlkdn
►Enroll in the complete course: bit.ly/3W4qthg
►Source Code - github.com/dinesh-varyani/ds-algos
►Download DSA Animation Slides - techready.in/courses/150-dsa-animations-slides/
►Click here to subscribe - ua-cam.com/users/hubberspot
Watch all my playlist here:
►Data Structures and Algorithms Course playlist: ua-cam.com/play/PL6Zs6LgrJj3tDXv8a_elC6eT_4R5gfX4d.html
►Mastering JUnit 5 - ua-cam.com/play/PL6Zs6LgrJj3tE9xbgcz16sNbscYkrtce7.html​
►Mastering Mockito 3 - ua-cam.com/play/PL6Zs6LgrJj3vy7yWpH9xb3Y0I_pAPrvCU.html
►Analysis of Algorithms - ua-cam.com/play/PL6Zs6LgrJj3vMr-K0K0rvchTg8Xq0Oq0J.html
►Linked List Data Structures - ua-cam.com/play/PL6Zs6LgrJj3tFNF3RvHDAvZcgOrvGWNRi.html
►Array Data Structures - ua-cam.com/play/PL6Zs6LgrJj3soWbSWG7mPRhhkMmOU-Oe_.html
►Stack Data Structure - ua-cam.com/play/PL6Zs6LgrJj3vWOf01wMHiTy9IFufptfG3.html
►Queue Data Structure - ua-cam.com/play/PL6Zs6LgrJj3uaeVkxa_-Dax_2XdmcfpQb.html
►Binary Tree Data Structure - ua-cam.com/play/PL6Zs6LgrJj3vmAOKY6vdN3_0furiZKFvi.html
►Graph Data Structure - ua-cam.com/play/PL6Zs6LgrJj3v7n2dyV3V1bxd9ZsuBj0LB.html
►Binary Heap Data Structure - ua-cam.com/play/PL6Zs6LgrJj3tOL6Uu4wOOeP8WFPD5GrfG.html
►Trie Data Structure - ua-cam.com/play/PL6Zs6LgrJj3uwRyATdtSua12k9EFQIW50.html
►Dynamic Programming Algorithms - ua-cam.com/play/PL6Zs6LgrJj3uV30RvZwHyteU2cXU59uuB.html
►Hashing Data Structures - ua-cam.com/play/PL6Zs6LgrJj3uyNihSkIq9QcNMylpR_9ba.html
►Sorting and Searching - ua-cam.com/play/PL6Zs6LgrJj3u57thS7K7yLPQb5nA23iVu.html
►String Algorithms - ua-cam.com/play/PL6Zs6LgrJj3vFnWWSmxzJv4_Ty1NBRd1-.html
#dsa #algorithms #coding
Переглядів: 81

Відео

Delete a Node from the end of a Singly Linked List in Java | Animation | Linked List in DSA
Переглядів 977 годин тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Delete a Node from the beginning of a Singly Linked List in Python | Implementation | Linked List
Переглядів 12519 годин тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Delete a Node from the beginning of a Singly Linked List in Java | Implementation | Linked List
Переглядів 130День тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Delete a Node from the beginning of a Singly Linked List in Python | Animation | Linked List in DSA
Переглядів 94День тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Delete a Node from the beginning of a Singly Linked List in Java | Animation | Linked List in DSA
Переглядів 12514 днів тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node in a Singly Linked List at a given position in Python | Implementation | Linked List
Переглядів 9214 днів тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node in a Singly Linked List at a given position in Java | Implementation | Linked List
Переглядів 7614 днів тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node in a Singly Linked List at a given position in Python | Animation | Linked List
Переглядів 13614 днів тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node in a Singly Linked List at a given position in Java | Animation | Linked List
Переглядів 11514 днів тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node at the end of a Singly Linked List in Python | Implementation | Linked List
Переглядів 8214 днів тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node at the end of a Singly Linked List in Java | Implementation | Linked List
Переглядів 10121 день тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node at the end of a Singly Linked List in Python | Animation | Linked List
Переглядів 10021 день тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node at the end of a Singly Linked List in Java | Animation | Linked List
Переглядів 11421 день тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node at the beginning of a Singly Linked List in Python | Implementation | Linked List
Переглядів 8321 день тому
Singly Linked List is a data structure that stores data in the form of a series of nodes. The data structure has the following properties - 1. It contains a sequence of nodes. 2. A node has data and a reference that points to the next node in a list. 3. The first node is the head node. It holds the complete list. 4. The last node has data and the next points to null or None. 5. It is a one-way ...
Insert a Node in the beginning of a Singly Linked List in Java | Implementation | Linked List in DSA
Переглядів 9721 день тому
Insert a Node in the beginning of a Singly Linked List in Java | Implementation | Linked List in DSA
Insert a Node in the beginning of a Singly Linked List in Python | Animation | Linked List in DSA
Переглядів 7721 день тому
Insert a Node in the beginning of a Singly Linked List in Python | Animation | Linked List in DSA
Insert a Node in the beginning of a Singly Linked List in Java | Animation | Linked List in DSA
Переглядів 10221 день тому
Insert a Node in the beginning of a Singly Linked List in Java | Animation | Linked List in DSA
Size optimization in a Singly Linked List in Python | Linked List in DSA
Переглядів 7928 днів тому
Size optimization in a Singly Linked List in Python | Linked List in DSA
Size optimization in a Singly Linked List in Java | Linked List in DSA
Переглядів 11628 днів тому
Size optimization in a Singly Linked List in Java | Linked List in DSA
Find length of a Singly Linked List in Python | Implementation | Linked List in DSA
Переглядів 78Місяць тому
Find length of a Singly Linked List in Python | Implementation | Linked List in DSA
Find length of a Singly Linked List in Java | Implementation | Linked List in DSA
Переглядів 107Місяць тому
Find length of a Singly Linked List in Java | Implementation | Linked List in DSA
Find length of a Singly Linked List in Python | Animation | Linked List in DSA
Переглядів 118Місяць тому
Find length of a Singly Linked List in Python | Animation | Linked List in DSA
Find length of a Singly Linked List in Java | Animation | Linked List in DSA
Переглядів 122Місяць тому
Find length of a Singly Linked List in Java | Animation | Linked List in DSA
Print elements of a Singly Linked List in Python | Implementation | Linked List in DSA
Переглядів 72Місяць тому
Print elements of a Singly Linked List in Python | Implementation | Linked List in DSA
Print elements of a Singly Linked List in Java | Implementation | Linked List in DSA
Переглядів 161Місяць тому
Print elements of a Singly Linked List in Java | Implementation | Linked List in DSA
Print elements of a Singly Linked List in Python | Animation | Linked List in DSA
Переглядів 127Місяць тому
Print elements of a Singly Linked List in Python | Animation | Linked List in DSA
Print elements of a Singly Linked List in Java | Animation | Linked List in DSA
Переглядів 229Місяць тому
Print elements of a Singly Linked List in Java | Animation | Linked List in DSA
Create a Singly Linked List in Python (Naive) | Coding | Linked List in DSA
Переглядів 124Місяць тому
Create a Singly Linked List in Python (Naive) | Coding | Linked List in DSA
Create a Singly Linked List in Java (Naive) | Coding | Linked List in DSA
Переглядів 147Місяць тому
Create a Singly Linked List in Java (Naive) | Coding | Linked List in DSA

КОМЕНТАРІ

  • @Thanos.........
    @Thanos......... 15 годин тому

    sir ap kya pura data structure padhaoge?

  • @syntheplayz4663
    @syntheplayz4663 День тому

    Sir please make a playlist on 2d arrays 🙏🏻🙏🏻

  • @ananthukkumar987
    @ananthukkumar987 День тому

    How does this algorithm guarantees that slowPtr and fastPtr would coincide at some point, what if the loop is way bigger, would the algorithm still holds?

    • @itsdineshvaryani
      @itsdineshvaryani День тому

      Check its proof in the next video of the playlist

  • @user-du5et4he6d
    @user-du5et4he6d 2 дні тому

    Thank u sir

  • @AmanKumar-cm3et
    @AmanKumar-cm3et 2 дні тому

    Good evening Sir, For a beginner where to start solving dsa problems VS CODE the questions that you taught in this course or leetcode problems and how to memorise the code for a long time to write in copy again and again or to do something else. Thank you Sir for this course.

  • @user-zm4bx1tw7w
    @user-zm4bx1tw7w 2 дні тому

    sir , why don't you get error by assessing the printarray method without the object?

  • @user-du5et4he6d
    @user-du5et4he6d 2 дні тому

    Thank u sir

  • @syntheplayz4663
    @syntheplayz4663 3 дні тому

    Sir when will you start trees in java here 🙏🏻?

  • @AmanKumar-cm3et
    @AmanKumar-cm3et 3 дні тому

    Thank you Sir

  • @ananthukkumar987
    @ananthukkumar987 4 дні тому

    Wow, Intelligent algorithm

  • @user-fw3vs7tm1v
    @user-fw3vs7tm1v 6 днів тому

    lets keeping going

  • @golcuk2076
    @golcuk2076 6 днів тому

    I tried to solve this problem with the knowledge that I had in previous videos and I tried for maybe 6 hours but when I saw this solution I understood that I didn't even get a bit close to a solution. Thinking about the algorithm is harder than I imagined and Thx ofc for this valuable video Dinesh.

  • @user-du5et4he6d
    @user-du5et4he6d 8 днів тому

    Thank u sir

  • @sanjanadas42
    @sanjanadas42 10 днів тому

    Sir can we do the implementation in BlueJ rather than eclipse??

  • @ABHISHEKSHARMA-jj5jh
    @ABHISHEKSHARMA-jj5jh 11 днів тому

    excellent job sir

  • @SugavasiJesmithaEAOK
    @SugavasiJesmithaEAOK 11 днів тому

    Sir do videos continuously in python sir I am very eager to learn in python

  • @user-du5et4he6d
    @user-du5et4he6d 12 днів тому

    Thank u sir

  • @appikeeru5785
    @appikeeru5785 12 днів тому

    I love your patience😂❤

  • @dirisalapavankumar397
    @dirisalapavankumar397 13 днів тому

    can you add related problems in some platforms that could aid our learning.

  • @chomusaxena
    @chomusaxena 13 днів тому

    Pls don't stop uploading video, you doing great and superb❤❤🗿🗿🔥🔥🇮🇳🇮🇳

  • @user-du5et4he6d
    @user-du5et4he6d 13 днів тому

    Thank u sir

  • @NagendraKamisetti
    @NagendraKamisetti 13 днів тому

    Hi Sir, Do you have this video in english, if not doing it in english will be helpful for everyone. English is the minimum they need to know to understand computers and work as a software engineer. Your videos are good, I subscribed for your channel.

  • @rayenmerghmi5664
    @rayenmerghmi5664 13 днів тому

    public static int[] reverse(int[] reversed){ for(int i = reversed.length - 1; i >= 0; i--) System.out.println(reversed[i]); return reversed; } i used this methode to reverse the array is there anything wrong with it

  • @user-du5et4he6d
    @user-du5et4he6d 14 днів тому

    Thank u sir

  • @panhaponn2344
    @panhaponn2344 14 днів тому

    why do you have to have 2 insert methods and 2 inOrder methods

  • @user-du5et4he6d
    @user-du5et4he6d 15 днів тому

    Thank u sir

  • @keerthigeetha4182
    @keerthigeetha4182 15 днів тому

    Superb lectures 🎉🎉

  • @keerthigeetha4182
    @keerthigeetha4182 15 днів тому

    your teaching style is excellent make more videos on different subjects the best you tube channel I have ever seen 🎉🎉

  • @RajKiran_RK
    @RajKiran_RK 16 днів тому

    Thank you sir for your kind details of the program

  • @kalatotkagaming7789
    @kalatotkagaming7789 16 днів тому

    Starts from the bottom of the recursion and keep it simple , now I'm got it . Thanks 😊

  • @PANKAJKUMAR-hk1cg
    @PANKAJKUMAR-hk1cg 16 днів тому

    ❤❤❤❤❤❤

  • @gopikrishnaarava27
    @gopikrishnaarava27 17 днів тому

    Please explain in English sir ..

  • @user-du5et4he6d
    @user-du5et4he6d 17 днів тому

    Hi sir No video on 20th june

  • @naheethagther360
    @naheethagther360 17 днів тому

    Thank you its very useful sir

  • @mishra.pritam
    @mishra.pritam 18 днів тому

    O(1) for left one and O(n) for right one

  • @pujakumari6813
    @pujakumari6813 18 днів тому

    Thank u sir

  • @pujakumari6813
    @pujakumari6813 18 днів тому

    Thank u sir

  • @python3006
    @python3006 18 днів тому

    🙏🙏🙏

  • @user-du5et4he6d
    @user-du5et4he6d 18 днів тому

    Thank u sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @python3006
    @python3006 19 днів тому

    sir please create more video on data structure and algorithm with python language please sir

  • @Arjun2mkap3929
    @Arjun2mkap3929 19 днів тому

    Super keep doing vedio

  • @user-du5et4he6d
    @user-du5et4he6d 19 днів тому

    Thank u sir

  • @user-du5et4he6d
    @user-du5et4he6d 19 днів тому

    Thank u sir