Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
291 views

“Programming Pearls” binary search help

I just can't seem to understand how this would work. Question: Given a sequential file that contains at most four billion 32 bit integers in random order, find a 32-bit integer that isn't in the file ...
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
4answers
766 views

Longest Non-Overlapping Substring

I wonder if anyone knows the (optimal?) algorithm for longest recurring non-overlapping sub string. For example, in the string ABADZEDGBADEZ the longest recurring would be "BAD". Incidentally if ...
4
votes
5answers
861 views

Help me understand this “Programming pearls” bitsort program

Jon Bentley in Column 1 of his book programming pearls introduces a technique for sorting a sequence of non-zero positive integers using bit vectors. I have taken the program bitsort.c from here and ...
3
votes
4answers
192 views

Maximum Countiguous Negative Sum or Mnimum positive subsequence sum problem

We all heard of bentley's beautiful proramming pearls problem which solves maximum subsequence sum: maxsofar = 0; maxcur = 0; for (i = 0; i < n; i++) { maxcur = max(A[i] + maxcur, 0); maxsofar ...
3
votes
5answers
765 views

Programming Pearls: find one integer appears at least twice

It's in the section 2.6 and problem 2, the original problem is like this: "Given a sequential file containing 4,300,000,000 32-bit integers, how can you find one that appears at least twice?" My ...
3
votes
2answers
398 views

Error in qsort function in Programming Pearls?

is it just me or this code in Programming Pearls is wrong (quicksort wants 2 const voids, no?) If so, is my solution right? Apologies, just learning... int wordncmp(char *p, char* q) { int n = k; ...
2
votes
8answers
2k views

Fastest algorithm for circle shift N sized array for M position

What is the fastest algorithm for circle shifting array for m positions? For example [3 4 5 2 3 1 4] shift m = 2 positions should be [1 4 3 4 5 2 3] Thanks a lot
1
vote
2answers
151 views

Bit Mask usage in the program below from Programming Pearls

I started reading "Programming Pearls" today and while doing it's exercise I came across this question "How would you implement your own bit vector?". When I looked at the solution it was like this: ...
1
vote
1answer
297 views

Algorithm for minimum sum subvector

The problem found in programming pearls column 8 is as follows: Given the real vector x[n], compute the maximum sum found in any contiguous subvector. The final solution provided is of O(n) ...
1
vote
2answers
1k views

Solutions to the 'Programming Pearls' book by Jon Bentley

Is there a place where I can find the solutions to the 'Programming Pearls' book by Jon Bentley ? I need to verify what ever little exercise problems I solve.. Thank you ..
1
vote
2answers
311 views

How is Programming Pearls 2nd ed different from the first edition?

I enjoyed reading Jon Bentley's Programming Pearls 1st edition a long time ago. Is the second edition worth buying? Are there significant changes, other than code being written in C/C++? P.S.: I've ...
0
votes
1answer
25 views

Matrix transposition on a magnetic tape

Programming pearls Problem 7 is about transposing a 4000 x 4000 matrix stored on a magnetic tape. My solution was to simply use a temporary variable and swap the contents of a[i][j] and a[j][i]. The ...
0
votes
2answers
196 views

Sorting 10 million integers with 1 MB space Solution explanation - Programming Pearls

I was reading "Programming Pearls" and I am really confused in one of the solution explanations. The question was: "A file containing at most n positive integers, each less than n, where n = 10^7. ...
0
votes
4answers
264 views

Debugging and Binary Search

"Programming Pearls" in the column 2 ("AHA! Algorithm") talks about how binary search aids in various processes like sorting, tree traversals. But it mentions that binary seach can be used in "program ...