Best Blackhat Forum

Full Version: [F4LT] Working with LinkedList
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Working with LinkedList
Solving LinkedList questions using two pointers
New
Rating: 0.0 out of 5
(0 ratings)
246 students
33min of on-demand video

Description
LinkedList is the easiest topic comparing with all other DSA topics.

What is LinkedList?

A class / node is created with two elements - data and address. Data field stores some values. Address field will store the address of the node to which it needs to connect.

When several nodes are connected with each other, it forms a Linked List.

Why Linked List?

Array has a size limitation. When we don't know the size of the elements we are going to have, we can't use Arrays. We can use Lists in those situations

https://www.udemy.com/course/working-with-linkedlist/

Enjoy!
Reference URL's