PUSH POP
- https://www.tutorialspoint.com/data_structures_algorithms/stack_algorithm.htm
- https://www.youtube.com/watch?v=F1F2imiOJfk
2.QUEUE:First in first out(FIFO)
3.Linked list:
- Linked List contains a link element called first.
- Each link carries a data field(s) and a link field called next.
- Each link is linked with its next link using its next link.
- Last link carries a link as null to mark the end of the list.
- link
- Head
- Node
- Next
- Null
Types of linked list
- Simple Linked List
- Doubly Linked List
- Circular Linked List
Basic Operations
- Insertion
- Deletion
- Display
- Search
- Delete
No comments:
Post a Comment