I have an array that contains values like 0,3,2,8 etc.I want to sort my array in increasing order.Please tell me how to do this.
Thanks in advance!!
|
I have an array that contains values like 0,3,2,8 etc.I want to sort my array in increasing order.Please tell me how to do this. Thanks in advance!! |
|||
|
|
|
If your array is an NSArray containing NSNumbers:
Keep in mind though, that this is just one way to sort an NSArray. Just to name a few other methods of NSArray:
If your array is a c int array containing ints:
|
||||
|
|
|
|||
|
|
|
Sorting has many solutions, each with different efficiencies. The easiest and most natural sort, in my opinion, is insertion sort. Go to this page and scroll down to look at the code. Insertion sort For a more complete list of all of the sorting algorithms, check this page |
|||
|
|
|
Use the code: myData is your array. If you use that line in your code, it will sort on size of the integer (and not alphabetic, so it won't sort like Original source: How to let the sortedArrayUsingSelector using integer to sort instead of String? |
|||
|
|
|
You don't need a sort descriptor if your array is that simple with
will return a new array sorted in increasing order, as you want. |
|||
|
|