A question about 20 questions games was asked here:
However, if I'm understanding it correctly, the answers seem to assume that each question will go down a hierarchal branching tree. A binary tree should work if the game went like this:
Is it an animal? Yes.
Is it a mammal? Yes.
Is it a feline? Yes.
Because feline is an example...
I'm pulling my hair out on this and Google results are skewed since it thinks I want to find out how to code something.
My problem is that when trying to search my code with the String Matching box it finds nothing, even if I enter something that is on the screen below.
Is it Spotlight that is delivering these results? I'm not excludin...
Hi,
I have activity with ListView. That listView contains imageView and two textViews (aka first and last names). I want to organize searching with this listView by one of textView (e.g. by last name).
How can I implement that?
I found that Quick Search Box can be used but I didn't understand how to work with it.
Help, plz :)
...
Hello,
I am indexing about 100M documents that consist of a few string identifiers and a hundred or so numaric terms.. I won't be doing range queries, so I haven't dugg too deep into Numaric Field but I'm not thinking its the right choose here.
My problem is that the query performance degrades quickly when I start adding OR criteria...
If I have a 2D array that is arranged as follows :
String X[][] = new String [][] {{"127.0.0.9", "60", "75000","UDP", "Good"},
{"127.0.0.8", "75", "75000","TCP", "Bad"},
{"127.0.0.9", "75", "70000","UDP", "Good"},
{"127.0.0.1", "", "70000","UDP", "Good"},
...
Hi,
My question is about removing duplicates from a linked list. But i want to do it before adding to linked list.
struct myStr{int number; mystr *next;}
void append(mystr **q,int item)
{
myStr *temp;
temp = *q;
myStr *newone;
if(*q==NULL)// There should be control of previous elements. Call of keysearch function.
{ temp = (mySt...
So I have a list of words (the entire English dictionary).
For a word matching game, when a player moves a piece I need to check the entire dictionary to see if the the word that the player made exists in the dictionary. I need to do this as quickly as possible. simply iterating through the dictionary is way too slow.
What is the quic...
Hello
I want to change default post search order to order:
sample cat 1
sample post from cat 1
sample post from cat 1
sample cat 2
sample post from cat 2
sample post from cat 3
sample cat 3
etc..
So... I want to define category order and in search results will be sorted for this order and in category order will be date DESC. O...
Hi everyone.
I want to search my link on other pages by passing url address.
After passing the url it should return some boolean value which will define the existence of my link.
Preferred language ASP.net/C#
If it is possible, Please help me.
...
I have very complicated search algorithm on my site, so i decided to make a table with
cache or maybe all possible results.
I wanna ask what structure would be better, or maybe not the one of them? (mySQL)
1) word VARCHAR, results TEXT or BLOB where i'll store ids of found objects (for example 6 chars for each id)
2) word VARCHAR, resu...
I am working on a project that involves searching for videos, these videos are tagged similar to how questions are tagged on stack overflow. I was wondering if anyone knows of a good 'tag-based' search algorithm.
Thanks!
...
The google search ajax api is terrific, and the .net wrapper available on codeplex makes using it from a .net project very simple. However, the api itself is crippled so that it only returns 64 results per query. Not very useful for many applications.
Ignoring the likely TOS problems, are there known .net libraries that can query the r...
Hi,
i got some li's that i'd like to sort and search through using jquery.
I've found
http://plugins.jquery.com/project/TinySort to sort things
and http://stackoverflow.com/questions/1428645/search-through-a-big-list-fast-with-jquery to search through the li's.
Is there a good plugin that can handle both things (search+sort) or is the...
Hi...Can someone please tell how site specific searches are done. For example, search in the stackoverflow.com
Thanks
...
I started this task assuming it to be pretty trivial one. However, going to the depths i find that its either not that simple or may be i am using a wrong approach here. In my case i have a number of documents which are not in the same directory however, they have the same names/title. What i want is to carry out a site based search and ...
Hi Everyone,
I have a kase model which I am using a simple search form in. The problem I am having is some kases are linked to companies through a company model, and people through a people model.
At the moment my search (in Kase model) looks like this:
# SEARCH FACILITY
def self.search(search)
search_condition = "%" + search +...
How would you implement a search facility within an ASP.NET hybrid application? I'm really tempted to start rebuilding our Intranet application using ASP.NET MVC & Web Forms (mainly MVC though).
I know how to search the dynamic content from a database, but I'm struggling with the static content in the Views. Surely this should be an eas...
how would i search through a list with ~5 mil 128bit (or 256, depending on how you look at it) strings quickly and find the duplicates (in python)? i can turn the strings into numbers, but i don't think that's going to help much. since i haven't learned much information theory, is there anything about this in information theory?
and si...
Hi
I am looking for a general way to be able to search for a unique CALayer in a hierarchy without having to remember where the layer is in a hierarchy (and use the sublayer: and superlayer: methods).
I know this is possible with UIViews (which makes flipping views easy) but is it possible for CALayer?
thank you in advance for your ...
Short of SQL-dumping my entire database to text and searching that, is there a way to search for a specific substring in all tables of a MySQL database if you are not sure which table/record/field that substring actually occurs?
...