专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅
 // Insert_sort.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include "iostream.h"#include "iomanip.h"#define MAXSIZE 100//插入法排序 void Insert_sort(int a[],int n){ int i,b,j;   //b和j都是指针指向相应的元素     for(i = 1;i < n;i+ [阅读全文] [PDF]
1 共1条 分1页