2.插入排序

2.插入排序 源代碼:c++ #include <bits/stdc++.h> using namespace std; int main() { int a[5]={5,6,1,2,3}; for(int i=1;i<5;i++) //n-1次排序 默認第一位是有序 故排序第一位後面得 { int temp=a[i],j=i; //記錄a【i】 從j→i開始枚舉 while(
相關文章
相關標籤/搜索