摘要: 自己定义写的itoa函数,实现各种进制的转换。下面直接上代码首发:http://www.5dkx.com/arch/64.html非特别说明均为原创文章如转载,请注明:转载自 5D开心博客 [ http://www.5DKX.com/ ] 阅读全文
posted @ 2010-03-31 21:57 5D开心博客 阅读(638) 评论(0) 推荐(0) 编辑
摘要: 写了个二路归并的归并排序小代码,直接贴上来/*file:quick.cppauthor:www.5dkx.com*/#include<iostream>using namespace std;void Merge(int a[],int low,int mid,int high,int b[]);void MSort(int a[],int low,int high,int b[]);... 阅读全文
posted @ 2010-03-31 21:37 5D开心博客 阅读(752) 评论(0) 推荐(0) 编辑