Top "Search" questions

Questions about search algorithm mechanics and implementation.

What .NET collection provides the fastest search

I have 60k items that need to be checked against a 20k lookup list. Is there a collection object (like …

c# .net search collections
Case-Insensitive List Search

I have a list testList that contains a bunch of strings. I would like to add a new string into …

c# list search case-insensitive
How to copy marked text in notepad++

I have a part of HTML source file that contains strings that I want to select and copy at once, …

regex search notepad++
Search and get a line in Python

Is there a way to search, from a string, a line containing another string and retrieve the entire line? For …

python string search line
How can I count the occurrences of a string within a file?

Just take this code as an example. Pretending it is an HTML/text file, if I would like to know …

bash search
Check if a specific value exists at a specific key in any subarray of a multidimensional array

I need to search a multidimensional array for a specific value in any of the indexed subarrays. In other words, …

php arrays search multidimensional-array array-column
List View Filter Android

I have created a list view in android and I want to add edit text above the list and when …

android listview search filter android-listview
Live search through table rows

I want to do a live search through the table rows, using jQuery, the "live" word is the key, because …

jquery search live tablerow
Generate an integer that is not among four billion given ones

I have been given this interview question: Given an input file with four billion integers, provide an algorithm to generate …

algorithm file search out-of-memory memory-limit
How to search a list of tuples in Python

So I have a list of tuples such as this: [(1,"juca"),(22,"james"),(53,"xuxa"),(44,"delicia")] I want this list for a …

python search list tuples