What type of sort does the following function in C/C++ implement?
1 2 3 4 5 6 7 8 9 10 11 |
|
Details and Assumptions:
a
is the
int
array to be sorted, or more precisely, it denotes the base address of the array to be sorted.
len
is the length of the array
a
, i.e., the number of elements in the array to be sorted.
ord
specifies the sorting order, where
1
is used for ascending sort and
2
is used for descending sort.
swap()
is a function which swaps the values of two
int
variables via a call by reference. The explicit definition for this function is:
1 2 3 4 5 |
|
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
You should not put break after else.