What's the most idiomatic way to convert a set of integers into a set of ranges?
E.g. given the set {0, 1, 2, 3, 4, 7, 8, 9, 11} I want to get { {0,4}, {7,9}, {11,11} } using C#
This question is already answered in C++ @ Solution in C++
|
What's the most idiomatic way to convert a set of integers into a set of ranges? E.g. given the set {0, 1, 2, 3, 4, 7, 8, 9, 11} I want to get { {0,4}, {7,9}, {11,11} } using C# This question is already answered in C++ @ Solution in C++ |
|||
|
|
This isn't very efficient, but it is idiomatic:
More efficient, assuming it's sorted:
|
|||||||||
|
|
This should be a pretty straightforward transliteration from the post you mentioned. Make sure you put this code in a class somewhere, C# code has to be in a class. I'm assuming you are not very familiar with C#, so I'll do enough to show the similarities and differences, and hopefully you can handle the rest.
For a more idiomatic soluiton, I would return an
|
|||
|
|
|
Try K-means clustering to get the ranges. You'll need to specify how many different ranges you want. |
|||||||
|