data structure algorithms for database searching
Posted
by Ygam
on Stack Overflow
See other posts from Stack Overflow
or by Ygam
Published on 2010-03-31T21:22:14Z
Indexed on
2010/03/31
21:23 UTC
Read the original article
Hit count: 379
I was used to the traditional way of doing database searching with the following
- using wildcards for term searches
- using where clause for specific data like addresses and names
but at other times, I found these common methods to produce code that is so bloated, especially when it comes to complex searches.
Are there algorithms out there that you use for complex database searching? I tried to look for some but had a hard time doing so. I stumbled accross the binary search but I can't find a use for it :(
© Stack Overflow or respective owner