How to insert node at the end of a Circular Singly Linked List in Java ?

preview_player
Показать описание

Watch all my playlist here:

Want to land a software engineering job in the IT industry? This course - 'Visualizing Data Structures and Algorithms' is here to help. The course walks you through multiple Java algorithms, data structures problems, and their solutions with step by step visualizations, so that you are actually learning instead of blindly memorizing solutions.

The course covers in and outs of Data Structures and Algorithms in Java. Java is used as the programming language in the course. Students familiar with Javascript, Python, C#, C++, C, etc will also get to learn concepts without any difficulty. The implementation of various Algorithms and Data Structures have been demonstrated and implemented through animated slides. It covers many interview room questions on Algorithms and Data Structures. The questions and solutions are demonstrated by -

1. Animated slide. (To make visualization of algorithms faster)
2. Coding algorithm on IDE.

The course covers topics such as -
0. Algorithm Analysis
1. Arrays
2. Matrix
3. Singly Linked List
4. Doubly Linked List
5. Circular Singly Linked List
6. Stacks
7. Queues
8. Binary Tree
9. Binary Search Tree
10. Graphs
11. Priority Queues and Heaps
12. Recursion
13. Searching
14. Sorting
15. Strings
16. Trie Data Structure
17. Dynamic Programming
and many more ...

#dsa #algorithms #coding
Рекомендации по теме
Комментарии
Автор

I would like to thank you for all the work you have put into the making of these videos.The way you structured them is great (algorithm explanation + code implementation).I'm looking forward to new videos on data structures and algorithms. Keep up the good work!

razvanr
Автор

Best series for DS & Algo. I am also 10 yrs java exp guy. Was looking for DS & Algo free course over YouTube with java implementation and found this. Hats Off To You Man..Excellent Work. GOD BLESS YOU :)

shubhamagarwal
Автор

Hi Dinesh, your videos are superb thanks for all the knowledge you are providing to us, Just a request can you upload some more videos related to datastructures like graphs, hashing related datastructures etc?

abhayshukla
Автор

Hello sir..
Your vedios are too helpful...Thank u for d details...
Can u explain Greedy algorithm and Minimum Spanning Tree...please...😊

gunjanbharti
Автор

pls make more (remaining) videos on circular and double linked list

kunalkharat
Автор

sir after using the insertfirst methode more than one time and than using insertlast method it just gives the output of one first and all the values are vanished and only insert at lasst is appearing
cll.insertFirst(6);
cll.insertFirst(7);
cll.insertFirst(22);
cll.insertFirst(799);
cll.insertLast(33);
cll.insertLast(88);


cll.display();
outpur is 33-->88

sir plzz help

code-hacker
Автор

what is last? is last current? the pointer? what is it

michlep