Given an array of integers, what is the simplest way to iterate over it and figure out all the ranges it covers? for example, for an array such as:
$numbers = array(1,3,4,5,6,8,11,12,14,15,16);
The ranges would be:
1,3-6,8,11-12,14-16
|
|
Given an array of integers, what is the simplest way to iterate over it and figure out all the ranges it covers? for example, for an array such as:
The ranges would be:
|
||||
|
|
|
If the array is sorted in ascending order, then the problem is easy. Define a If the array may not be sorted, then sort it first. |
|||
|
|
|
Here's a python implementation, it should be easy enough to follow
This outputs:
I know, I know, it isn't an algorithm, but I found it harder to actually explain it without having indentation problems than to just implement a solution for it. |
||
|
|
|
|
first: sort second: tokenise then: print the first value and loop over subsequent ones. If the 'current' value is equal to the last value +1, skip it. Otherwise if you've skipped value print dash and the value, otherwise print a comma and repeat. That should do. Unless you wanted me to code up your homework for you? :) |
||
|
|
|
|
Here's a C# 3.0'y way of doing it: Points of interest:
-
Cheers, David |
|||
|
|
|
|
Assuming the list is ordered you could start at the end and keep subtracting the next one down. While the difference is 1, you're in a range. When it's not, you start a new range. i.e 16-15 = 1 15-14 = 1 14-12 = 2, the range is 16-14 - start a new range. |
||
|
|
|
|
||
|
|
|
Here's my Perl solution. Could be cleaner and faster, but it shows how it works:
|
||
|
|
|
|
My solution in Java 1.5 would be:
which outputs:
Greetz, GHad |
||
|
|
|
|
I believe the mergeinfo property that was introduced to Subversion in the 1.5 release has a format that is the same as what you're asking for, so you could potentially go look through the source of Subversion to find out how they do it. I'd be surprised if its any different than the other suggestions that have already been posted here. |
||
|
|
|
|
If the array is sorted, as in your example, I would define buckets containing a min and a max. Initialize: Create a bucket with a min and a max equal to the first value. Loop: Compare each value with the max of the current bucket. If it is equal to or 1 more than the current max, update the max. If it is more than 1 greater than the max, save the bucket to a list of buckets and start a new bucket. At the end you will have a set of buckets with a min and a max in each. If the min is the same as the max, print a single number (ie: in your example, the first bucket would have a min and a max of 1). If they are different, print as a range. Example implementation in lisp:
Basically you end up with a list of things, where each thing has (lowest-in-bucket, highest-in-bucket). Those are your ranges. If the list is not already sorted, sort it first. |
||
|
|
|
|
I will assume the array X() is pre-sorted (and if not, sort the array before-hand).
for each element of X() as $element (with $i as current array posistion)
add $element to end of array Y()
if (X($i) + 1 is less than X($i + 1)) AND ($i + 1 is not greater than sizeof(X())) then
append Y(1)."-".Y(sizeof(Y())) to end of Z()
unset Y()
end if
next
if anything remains in Y() append to end of Z()
well, that's how I would do it. |
||
|
|
|
|
Create a simple range type which contains start / end of range values. Add a constructor which takes only one value and sets start = end = value. Maintain a stack of range objects, work your way through a sorted copy of the array, extend the top range or add a new range as appropriate. More specifically, when the value in the array is 1 + the end value for the range object on the to of the stack, increment the end value for that range, when it's not, push a new range (with start = end = value at index in array) onto the stack. |
||
|
|
|
|
Here's my best shot in Haskell. |
||
|
|
|
|
Perl 6
|
||
|
|
|
Python (>= 2.6)This version additionally handles duplicates and unsorted sequences.
Example:
Output:
|
||
|
|
|
|
C (gcc)It is similar to the Python's version.
Example:
Output:
|
|||
|
|