2014年3月5日

Remove Element

摘要: 源码: 1 class Solution { 2 public: 3 int removeElement(int A[], int n, int elem) { 4 sort(A,A+n); 5 int i,j; 6 i=0; 7 j=n-1; 8 while(i<=j) 9 {10 if(A[i]!=elem)11 {12 i++;13 }14 else15 ... 阅读全文

posted @ 2014-03-05 18:49 crane_practice 阅读(153) 评论(0) 推荐(0) 编辑

Remove Duplicates from Sorted Array

摘要: 我的思路:如果一个一个比较的话就是太野蛮的写法了,可以先排序在处理关于排序函数参看:http://www.cnblogs.com/ForeverJoker/archive/2013/05/25/qsort-sort.html(在本题中题目上说了Given a sorted array,人家已经排好序啦``````)刚开始写的,结果:Time Limit Exceeded 1 class Solution { 2 public: 3 int removeDuplicates(int A[], int n) { 4 if(n1,2,2,3——>1,2,3,3但是,如果是1,... 阅读全文

posted @ 2014-03-05 18:38 crane_practice 阅读(210) 评论(0) 推荐(0) 编辑

导航