1
vote
3answers
34 views
How do I search for a String in an array of Strings using binarySearch or another method?
using binarySearch never returns the right index =/
int j = Arrays.binarySearch(keys,key);
where keys is type String[] and key is type String
I read something about needing to …
4
votes
9answers
319 views
Fast algorithm for searching for substrings in a string
I'd like an efficient algorithm (or library) that I can use in Java to search for substrings in a string.
What I would like to do is:
Given an input string - INSTR:
"BCDEFGH …
0
votes
3answers
24 views
Optimizing an Ajax based website for Google Search
Hi all,
I would really like to hear your opinions about search engine optimizations for an Ajax based website.
The study case is the following:
http://projects.trapexit.org/
Wh …
1
vote
2answers
24 views
Google AJAX search api
Using the Google AJAX search api
How can I call a search from my own text box?
And parse the results in javascript?
0
votes
2answers
59 views
Google Site Search - How do I get rid of branding?
I've paid for Google Site Search for my site and despite it saying that you don't need to have branding, it puts a "Google Custom Search" watermark on the textbox. I don't want thi …
0
votes
2answers
27 views
searching and listing WPF resource dictionaries in a folder
I'm making a WPF application that is going to have multiple skins branded in by our build system. Ideally we would like the application to list off the skins available as some bui …
10
votes
10answers
334 views
Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python.
There's a 1 Gigabyte string of arbitrary data which you can assume to be equivalent to something like:
1_gb_string=os.urandom(1*gigabyte)
We will be searching this string, 1_gb_ …
3
votes
2answers
33 views
What is the best way to search multiple sources simultaneously?
I'm writing a phonebook search, that will query multiple remote sources but I'm wondering how it's best to approach this task.
The easiest way to do this is to take the query, sta …
0
votes
0answers
14 views
crawling folder content in sharepoint
Hi everyone,
I have a sharepoint site that gives me trouble with the search, it somehow crawls everything in the site but when I make a search for a document and I select one of th …
0
votes
5answers
56 views
How to implement a search in a HTML site?
I am really wondering if i can use search for a HTML website. The pages are static. I just want the users to able to search for contents of my site. and the results shown with in m …
1
vote
3answers
123 views
Is a Binary Tree Contained Within Another Binary Tree - C
Hello party people...So I just had an interview that I'm confident I screwed up royally. I had a bunch of questions thrown at me and didn't have enough time to answer the last one. …
1
vote
1answer
53 views
Need recommendation for .NET search solution
I'm looking for a search solution and i can't seem to find it.
It's meant for a website that offers over a million products of different types that should be searchable.
Products a …
0
votes
1answer
25 views
making a simple search function, making the cursor jump to (or highlight) the word that is searched for.
Dear community.
I have now used way too long time, trying to figure out a problem, which I didn't think would be that hard.
Here is the deal:
I am writing a small application us …
0
votes
2answers
34 views
The best way to implement live(search as you type) contact search?
Hi guys,
I'm trying to implement a better live(search as you type) contact search in my iPhone app. After doing some real device testing if found my current (non-threaded) implem …
1
vote
5answers
53 views
Adding Search to Ruby on Rails - Easy Question
I am trying to figure out how to add search to my rails application. I am brand new so go slow. I have created a blog and done quite a bit of customizing including adding some AJAX …
