jenney.qiu

导航

2014年3月27日

Quick Sort

摘要: class Program { static int[] a = new int[] { 6, 1, 2, 7, 9, 3, 4, 5, 10, 8 }; int n; static void Main(string[] args) { int i; int n = 9; quicksort(0, n); for (i = 0; i right) return; temp = a[left];... 阅读全文

posted @ 2014-03-27 15:17 jenney.qiu 阅读(177) 评论(0) 推荐(0) 编辑