摘要: 删除重复元素 1、简单的数组进行去重 1 //采用覆盖的方法,去掉重复元素 2 int removeDuplicate(int a[],int length) 3 { 4 int i = 0,j=0,location=0,count=0; 5 while (i < length) 6 { 7 j = 阅读全文
posted @ 2016-04-10 09:24 弦断 阅读(193) 评论(0) 推荐(0) 编辑