Recent questions tagged linked-list

1 votes
2 answers
96
In a circularly linked list organization, insertion of a record involves the modification ofno pointer$1$ pointer$2$ pointers$3$ pointers
2 votes
1 answer
97
The address field of linked list : Contain address of next node May contain null characterContain address of next pointerBoth $\left (A \right)$ and $\left ( B \right)$
0 votes
1 answer
100
What is the time required to insert an element in a stack with linked implementation?$O \left(\log_{2}n \right)$$O \left(n \right)$$O \left(n \log_{2}n \right)$$O \left(1...
36 votes
9 answers
101
What is the worst case time complexity of inserting $n$ elements into an empty linked list, if the linked list needs to be maintained in sorted order?$\Theta(n)$$\Theta(n...
0 votes
1 answer
103
1 votes
1 answer
105
Implement the dictionary operations $INSERT$, $DELETE$, and $SEARCH$ using singly linked, circular lists. What are the running times of your procedures?
1 votes
2 answers
107
1 votes
1 answer
108
0 votes
1 answer
109
0 votes
2 answers
111
Can somebody write the code or algorithm, how merge sort works efficiently in linked list? Is Heap sort most inefficient in Linked List Sorting? Elaborate plz
1 votes
0 answers
112
1 votes
2 answers
114
1 votes
1 answer
117
2 votes
1 answer
119