Tagged Questions
Binary search is an efficient algorithm for finding a key in a sorted array. It runs in O(log n) time.
30
votes
7answers
20k views
Binary Search in Python
Is there a library function that performs binary search on a list/tuple and return the position of the item if found and 'False' (-1, None, etc.) if not?
I found the functions bisect_left/right in ...
19
votes
16answers
18k views
Find kth smallest element in a binary search tree in Optimum way
I need to find the kth smallest element in the binary search tree without using any static/global variable. How to achieve it efficiently?
The solution that I have in my mind is doing the operation in ...
15
votes
4answers
3k views
How to find the kth smallest element in the union of two sorted arrays?
This is a homework question. They say it takes O(logN + logM) where N and M are the arrays lengths.
Let's name the arrays a and b. Obviously we can ignore all a[i] and b[i] where i > k.
First let's ...
14
votes
3answers
12k views
Optimum way to compare strings in Javascript?
I am trying to optimize a function which does binary search of strings in Javascript.
Binary search requires you to know whether the key is == the pivot or < the pivot.
But this requires two ...
14
votes
10answers
3k views
How to perform a binary search on IList<T>?
Simple question - given an IList<T> how do you perform a binary search without writing the method yourself and without copying the data to a type with build-in binary search support. My current ...
14
votes
6answers
6k views
Binary search in a sorted (memory-mapped ?) file in Java
I am struggling to port a Perl program to Java, and learning Java as I go. A central component of the original program is a Perl module that does string prefix lookups in a +500 GB sorted text file ...
14
votes
13answers
7k views
Which is faster, Hash lookup or Binary search?
When given a static set of objects (static in the sense that once loaded it seldom if ever changes) into which repeated concurrent lookups are needed with optimal performance, which is better, a ...
12
votes
7answers
2k views
Seaching for an element in a circular sorted array
We want to search for a given element in a circular sorted array in complexity not greater than O(Log n).
ex: search for 13 in {5,9,13,1,3}.
My idea was to convert the circular array into a regular ...
12
votes
21answers
3k views
Where is binary search used in practice?
Every programmer is taught that binary search is a good, fast way to search an ordered list of data. There are many toy textbook examples of using binary search, but what about in real programming: ...
11
votes
10answers
1k views
Interview task {Algorithms, Java}
A few days ago I had interview in some big company, name is not required :), and interviewer asked me to find solution to the next task:
Predefined:
There is dictionary of words with unspecified ...
10
votes
3answers
172 views
Why does bsearch return a void *?
void * bsearch ( const void * key,
const void * base,
size_t num,
size_t size,
int ( * comparator ) ( const void *, const void * ) ...
10
votes
10answers
29k views
What is the difference between Linear search and Binary search?
What is the difference between Linear search and Binary search?
9
votes
4answers
177 views
how to do binary search in one lie model?
the question is like this: there is a sorted list of n numbers. Given x, find a number which is equal to x in the sorted list. Here we assume that x is indeed in the list. There is an oracle that can ...
9
votes
2answers
181 views
Binary Search Problems? [closed]
Possible Duplicate:
What are the pitfalls in implementing binary search?
I was perusing the wikipedia page for Binary Search and stumbled on a quote by Knuth below:
"Although the basic ...
9
votes
5answers
719 views
What are the pitfalls in implementing binary search?
Binary search is harder to implement than it looks. "Although the basic idea of binary search is comparatively straightforward, the details can be surprisingly tricky…" — Donald Knuth.
Which bugs are ...
8
votes
3answers
2k views
C# lambda expressions and IComparer
I am using lambda expressions to sort and search an array in C#. I don't want to implement the IComparer interface in my class, because I need to sort and search on multiple member fields.
class ...
8
votes
3answers
3k views
The possible number of binary search trees that can be created with N keys is given by the Nth catalan number. Why?
This has been bothering me for a while. I know that given N keys to arrange in the form of a binary search tree, the possible number of trees that can be created correspond to the Nth number from the ...
7
votes
7answers
446 views
Finding even numbers in an array without using feedback
I saw this post: Finding even numbers in an array and I was thinking about how you could do it without feedback. Here's what I mean.
Given an array of length n containing at most e even numbers ...
7
votes
5answers
233 views
Is binary search optimal in worst case?
Is binary search optimal in worst case? My instructor has said so, but I could not find a book that backs it up. We start with an ordered array, and in worst case(worst case for that algorithm), any ...
7
votes
4answers
189 views
Looking for an algorithm (version of 2-dimensional binary search)
Easy problem and known algorithm:
I have a big array with 100 members. First X members are 0, and the rest are 1. Find X.
I am solving it by a binary search: Check member 50, if it is 0 - check ...
7
votes
5answers
450 views
find an element in a sorted matrix
Problem:
Given a matrix in which each row and each column is sorted, write a method to find an element in it.
It is a classic interview question, here is my solution
boolean F(int[][] matrix, int ...
7
votes
2answers
364 views
How to use BinarySearch for List<T>
Let's start with this overload of List BinarySearch:
public int BinarySearch(T item, IComparer<T> comparer);
It is well known that the list should be sorted with the appropiate IComparer ...
6
votes
3answers
265 views
Search string algorithms
I am trying to get the contact information in the content pages from a set of web sites (thousands of them). I wanted to ask experts like you guys before scratching my head. All I need is the ...
6
votes
4answers
144 views
Is there a name for this type of binary search?
In writing some code today, I have happened upon a circumstance that has caused me to write a binary search of a kind I have never seen before. Does this binary search have a name, and is it really a ...
6
votes
4answers
132 views
Searching huge sorted chunks of data
I have a huge set data records in disk that arranged in sorted order based on some key(s).
The data is read into memory a block (thousands of records) at a time.
I have to search and display all ...
6
votes
2answers
680 views
binary search in an array in Perl
I have an array of hex numbers, and I need to go over other numbers and check if they appear in that array. Right now i'm using a foreach loop that goes over the entire array each time. Is there a way ...
6
votes
1answer
205 views
Binary Search in D 2.0 (Phobos)?
Is it just me, or is there no binary search function in Phobos? I have a pre-sorted array that I want to search with my own comparator function, but I can't find anything in std.algorithms or ...
6
votes
3answers
756 views
How can I implement binary search in Perl?
I would like to implement a binary search algorithm in Perl. My 'array' is sorted in decreasing order (not an actual array, but a function that gets an index and returns values). the problem is that ...
6
votes
5answers
1k views
Fast average without division
I have a binary search loop which gets hit many times in the execution path.
A profiler shows that the division part of the search (finding the middle index given the high and low indices of the ...
5
votes
4answers
98 views
Impossible for me to understand a method of string search as described. What is uFFFF?
I am reading something about searching for a (range of) string(s) in a sorted array of strings.
It says:
If you want to find all strings starting with "h", you can run a
binary search for ...
5
votes
2answers
99 views
Why do binarySearch on list in Java?
I am not sure why List as a general data structure should have binary search algorithm given the list is sorted. Doesn't the get method which accepts the index traverse the List sequentially, at least ...
5
votes
2answers
503 views
Java Dictionary Searcher
I am trying to implement a program that will take a users input, split that string into tokens, and then search a dictionary for the words in that string. My goal for the parsed string is to have ...
5
votes
3answers
834 views
Is golden section search better than binary search?
Recently I've heard an opinion that binary search may be improved by taking by splitting the range by phi (golden ration) instead of by 2. This was a big surprise to me, because I've never heard about ...
5
votes
3answers
815 views
Construct a binary tree such that the Post-order traversal should give the sorted result
I know that In-order traversal(VISIT LEFT, VISIT ROOT, VISIT RIGHT) on a binary search tree gives me a sorted result. But I need to do a Post-order traversal (VISIT LEFT, VISIT RIGHT, VISIT ROOT) on a ...
5
votes
4answers
998 views
Can LINQ use binary search when the collection is ordered?
Can I somehow "instruct" LINQ to use binary search when the collection that I'm trying to search is ordered. I'm using an ObservableCollection<T>, populated with ordered data, and I'm trying to ...
5
votes
5answers
2k views
Where can I get a “useful” C++ binary search algorithm?
I need a binary search algorithm that is compatible with the C++ standard containers, something like std::binary_search in the standard library's <algorithm> header, but unlike ...
4
votes
2answers
60 views
BinarySearch for distance between coordinates
How should I use binary search to find if there is a distance between neighbor numbers greater than N in a sorted array? For example:
Input: 2 5 8 11 16
Distance: 4
So we should get answer that ...
4
votes
2answers
88 views
Can I do better than binary search here?
I want to pick the top "range" of cards based upon a percentage. I have all my possible 2 card hands organized in an array in order of the strength of the hand, like so:
AA, KK, AKsuited, QQ, ...
4
votes
2answers
163 views
Binary search over an “infinite” sequence. Where do I start?
I have an interesting problem. I'm faced with a function that takes a long time to compute a value based on some index. Call it takes_a_long_time(index). The values returned from this function are ...
4
votes
1answer
192 views
STL functions with 3-way comparison predicate
Is there any library with STL functions like std::sort(), std::binary_search(), std::lower_bound(), std::upper_bound() accepting 3-way comparison predicates (which return -1 on less, 0 on equal, 1 on ...
4
votes
5answers
373 views
Efficiency of Algorithm
This is a direct quote from the textbook, Invitation to Computer Science by G.Michael Scneider and Judith L.Gersting.
At the end of Section 3.4.2, we talked about the tradeoff between using ...
4
votes
6answers
1k views
What's the most efficient way to compare two blocks of memory?
I need a comparison function for blocks of memory for doing binary searches on arrays of bytes in the D programming language. It does not need to have any useful semantics. It only needs to be fast ...
4
votes
6answers
2k views
Find a missing 32bit integer among a unsorted array containing at most 4 billion ints
This is the problem described in Programming pearls. I can not understand binary search method descrbied by the author. Can any one helps to elaborate? Thanks.
EDIT:
I can understand binary search in ...
4
votes
3answers
2k views
What function in the std library is there to binary search a vector and find an element?
I've got a node struct
struct Node{CString text, int id;};
in a sorted vector.
I'm wondering if there's a function in algorithm that will do a binary search of the vector and find an element.
3
votes
7answers
167 views
Why is Binary Search a divide and conquer algorithm?
I was asked if a Binary Search is a divide and conquer algorithm at an examn. My answer was yes, because you divided the problem into smaller subproblems, until you reached your result.
But the ...
3
votes
3answers
89 views
Calculating mid in binary search
I was reading an algorithms book which had the following algorithm for binary search:
public class BinSearch {
static int search ( int [ ] A, int K ) {
int l = 0 ;
int u = A. length −1;
...
3
votes
2answers
215 views
find the first element in an array that is greater than the target
in a general binary search, we are looking for a value which appears in the array. Sometimes, we need looking for the first element that is greater/less than a target.
here is a binary search code ...
3
votes
1answer
224 views
Implementation of C lower_bound
Based on the following definition found here
Returns an iterator pointing to the
first element in the sorted range
[first,last) which does not compare
less than value. The comparison is
...
3
votes
1answer
210 views
Can I search a sorted List<T> faster when it is sorted on the fields I search on?
I thougt that sorting a List<T> on the fields I search on would make the search faster.
Suppose I have a List<Person> of 10.000 and a List<Car> of 10.000 in an object Model.
I loop ...
3
votes
4answers
268 views
Safe integer middle value formula
I am looking for an efficient formula working in Java which calculates the following expression:
(low + high) / 2
which is used for binary search.
So far, I have been using "low + (high - low) / 2" ...