Search Results

3
votes
7answers
388 views

[YAAQ] Array of size n, with one element n/2 times..

Given an array of n integers, where one element appears more than n/2 times. We need to find that element in linear time and constant extra space. YAAQ: Yet another arrays question. …
0
votes
3answers
95 views

[YAAQ] Monotonically increasing 2-d array.

Give an algorithm to find a given element x (give the co-ordinates), in an n by n matrix where the rows and columns are monotonically increasing. My thoughts: Reduce problem set size. …
3
votes
3answers
117 views

How can I tail a zipped file without reading its entire contents?

I want to emulate the functionality of gzcat | tail -n. This would be helpful for times when there are huge files (of a few GB's or so). Can I tail the last few lines of such a file w/o re …
0
votes

[YAAQ] Array of size n, with one element n/2 times..

This is what I thought initially. I made an attempt to keep the invariant "one element appears more than n/2 times", while reducing the problem set. Lets start comparing a[i], a[i+1 …