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

Describe linear probing with an example.

0 Answers  


Why do we use different types of data structures?

0 Answers  


How is the front of the queue calculated ?

0 Answers  


Why is hashmap faster than arraylist?

0 Answers  


What is data structure what is need of it?

0 Answers  






How to sequentially represent max-heap?

0 Answers  


When should structures be passed by values or by reference?

0 Answers   Tech Mahindra,


Is arraylist better than array?

0 Answers  


Can arraylist store objects?

0 Answers  


Is map a data structure?

0 Answers  


What is meant by linked list?

0 Answers  


What is the family trees and connection by clause?

0 Answers  


Categories