简单写了一个堆排序
摘要:
随手写了一下,接口什么的肯定都不规范,先大概了解一下堆排序的过程。#includeusing namespace std;int a[100];void swap(int i ,int j){ int temp = a[i]; a[i] = a[j]; a[j] = temp;}void fix(i... 阅读全文
posted @ 2014-04-14 22:30 pengyu2003 阅读(152) 评论(0) 推荐(0) 编辑