how to search an element in sorted linked list with time
complexity is O(log n).

Answers were Sorted based on User's Feedback



how to search an element in sorted linked list with time complexity is O(log n)...

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

how to search an element in sorted linked list with time complexity is O(log n)...

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

how to search an element in sorted linked list with time complexity is O(log n)...

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

Post New Answer

More Data Structures Interview Questions

What is quick sort?

0 Answers  


Describe the height term in a tree.

0 Answers  


How to initialize Dictionary using collection initialize?

0 Answers   Wipro,


Which interfaces are implemented by abstractsequentiallist?

0 Answers  


An array having 100 elements have numbers from 1 to 99 randomly out of which any number is repeated. Find the repeated number in minimum time and space complexity.

0 Answers  






how to insert a new node in linked list where free node will be available?

0 Answers  


Define splay tree?

0 Answers  


What are the different types of data structures?

0 Answers  


Define heap order property?

0 Answers  


Write an algorithm to show various operations on ordered list and arrays

0 Answers  


Define a complete binary tree?

0 Answers  


List the area of applications of data structure.

0 Answers  


Categories