Monday, June 4, 2018

How to implement linked list using queue data structure?

The One of Most interesting question is why to use queue data structure of linked list. The important factors is they are providing Constant time O(1) to insert linked list element.
https://www.codelike.in/c/queue/linked-list-implementation-using-queue . 
And view code execution process 

Click Here

How to insert linked list element at mid position?

The three possible position to inserting linked list element?.
1) Start position.
2) End Position
3) Between linked list node.
Click here www.codelike.in/c/linked-list/single-linked-list-insert-node-at-middle-position More information to insertion on linked list elemen.
And aslo view c code execution of this problem https://www.codelike.in/visualization/linked-list-insert-node-at-mid-position.