标签:笔记 class sort color 慢慢 学习 style 学习笔记 ati
static void InsertSort(int[] array) { for (int i = 1; i < array.Length; i++) { int temp = array[i]; int j = i; while (j > 0 && array[j - 1] > temp) { array[j] = array[j - 1]; j--; } array[j] = temp; } }
标签:笔记 class sort color 慢慢 学习 style 学习笔记 ati
原文地址:http://www.cnblogs.com/workhai/p/6230405.html