算法導論

《算法導論》–排序算法@[TOC]算法入門(這裏寫自定義目錄標題) 插入排序 //插入排序 #include <iostream> #include<bits/stdc++.h> using namespace std; int num[100]; void insert_sort(int a[],int n) { for(int j=1;j<n;j++)//insert a[j]into th
相關文章
相關標籤/搜索