Describe the sorting pattern. Discuss the Selection sort routines in terms of this pattern.
What will be an ideal response?
```
Sort array
1)Get split point and Split two parts
2)Sort first part(recursive)
3)Sort second part (recursive)
4)Join sorted parts.
```
Computer Science & Information Technology
You might also like to view...
Deleting a subdocument from a master document also deletes the actual subdocument file permanently
Indicate whether the statement is true or false
Computer Science & Information Technology
The ________ function will capitalize the first letter of each word
A) MID B) TRIM C) LEFT D) PROPER
Computer Science & Information Technology