题目内容
二分插入排序程序填空 void BInsSort( )// 按递增序对R[1]~R[ n ]进行二分插入排序{ int i, j, low, high, m;for ( i=2; i<=; i++){ R[0]=R[i];// 设定R[0]为监视哨low=1; high=;while (lowhigh){m= ;if ( R[0]=high+1;j--)R[j+1]=;// 元素后移R[high]=R[0];// 插入}}
查看答案
搜索结果不匹配?点我反馈