2014年4月14日

去掉有序数组中的重复元素 c/c++

摘要: 去掉有序数组中的重复元素:int RemoveDuplates(int A[], int nCnt){ int nNewLen = 0; int j = 0; for (int i = 0, j = 0; i i + 1 && j < nCnt) ... 阅读全文

posted @ 2014-04-14 16:14 algorithmic 阅读(10680) 评论(0) 推荐(0)

导航