摘要:
代码: #include <stdio.h> #include <stdbool.h> void BinaryInsertSort(int *a, int n) { int i, j, k, low, high, m; for (i = 1; i < n; i++) { low = 0; high 阅读全文
摘要:
伪代码: 可运行代码: #include <stdio.h> int insort(int s[], int n) /* 自定义函数 insort()*/ { int i, j; for (i = 2; i <= n; i++) //数组下标从2开始,s[0]做监视哨,s[1]一个数据无可比性 { 阅读全文