Need Help
-
Hi, Could any one help me to fast my search on Linked list application. Is there any method to search on linked list. Now i am searching by getfirst and getnext function to retrieve the next node datas. Regards Rajesh.
-
For faster searching use indexes and binary search algorthm
"No matter where you go, there your are." - Buckaroo Banzai
-pete
If you want to keep a linked list you won't search very fast, unless you add some other data structures with it. I'd suggest data hashing (order 1 search with a good algorithm) or AVL trees, which are better than binary search trees but require more work. Andrew
-
If you want to keep a linked list you won't search very fast, unless you add some other data structures with it. I'd suggest data hashing (order 1 search with a good algorithm) or AVL trees, which are better than binary search trees but require more work. Andrew