用C语言编写一个对数组排序的程序,要求使用递归算法实现。
http://blog.sina.com.cn/s/blog_70441c8e0100pxuh.html快速排序
http://blog.csdn.net/meditator_hkx/article/details/49756199
快速排序采用的二分法,正是将问题化大为小,展现递归的精髓~