2
votes
4answers
100 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 …
5
votes
6answers
1k 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 …
1
vote
1answer
78 views
Binary search in C with recursive function accepting only length
I am solving "Programming Pearls" exercises. 4.11 say:
Write and prove the correctness of a
recursive binary search function in C
or C++ with this declaration:
int bin …
1
vote
7answers
155 views
Fastest method for running a binary search on a file in C?
For example, let's say I want to find a particular word or number in a file. The contents are in sorted order (obviously). Since I want to run a binary search on the file, it seems …
2
votes
5answers
257 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 on …
1
vote
3answers
89 views
C# Array.BinarySearch Problem
Can anyone explain why this is happening?
ie. Even when 175 is present in the array at location 7, the array.binarysearch is returning a negative value?
Please see this image:
2
votes
6answers
255 views
Find a missing 32bit integer among a unsorted array containing at most 4 billion ints
Hi,
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 u …
3
votes
11answers
2k views
What is the difference between Linear search and Binary search?
What is the difference between Linear search and Binary search?
2
votes
6answers
229 views
Linq and Binary Search - Improve this slow Where statement?
I've got two collections, each containing about 40,000 items.
The elements in list 2 are linked to the elements of list one via a foreign key.
For each element of list one, I wan …
3
votes
7answers
550 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 …
4
votes
2answers
304 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 …
0
votes
1answer
137 views
Arrays.binarySearch doesnt work like it should
I have string array [1, 2, 3] and i search for all of those numbers using Arrays.binarySearch, it find 1 and 2, but with 3 it returns -1. any idea why it works that way? what is be …
2
votes
3answers
197 views
In Python, find item in list of dicts, using bisect
I have a list of dicts, something like this:
test_data = [
{ 'offset':0, 'data':1500 },
{ 'offset':1270, 'data':120 },
{ 'offset':2117, 'data':30 },
{ 'offset':405 …
4
votes
5answers
386 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 …
1
vote
2answers
135 views
solving this NullPointerException on java’s binarySearch
I'm solving sphere's online judge shortest path problem. This bit of code is giving me trouble:
int sourceIndex = Arrays.binarySearch(citiesIds,source);
int destinationIndex= Arr …
