how to search an element in sorted linked list with time
complexity is O(log n).
Answers were Sorted based on User's Feedback
Answer / baskerdearer
By using the skip list concept. we can search the sorted
linked list with O(log n).
| Is This Answer Correct ? | 35 Yes | 10 No |
Answer / sniper
Yes u are right ...
here are the details
http://msdn.microsoft.com/en-us/library/ms379573%28v=vs.80%29.aspx#datastructures20_4_topic4
thanks ...
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / pritam
we can use the binary search algorithm for this problem because this searching algorithm has O(log n) performance in both worse and average case.
| Is This Answer Correct ? | 3 Yes | 7 No |
What is binary tree in discrete mathematics?
What is the minimum number of queues that can be used to implement a priority queue?
How treemap orders the elements if the key is a string?
What is data type in data structure?
List the area of applications of data structure.
How do you find the number of comparisons in bubble sort?
how a polynomial such as 6x^6+4x^3-2x+10 can be represnted by linked list?write an algorithm that reads such an polynomial
What is quick sort?
Define union-by-weight?
What is a string or array type?
Which language is best for data structures?
How do you find the depth of a binary tree?