摘要: 1 class Solution { 2 public: 3 int removeDuplicates(int A[], int n) { 4 int *s=&A[0],*e=&A[0]; //s指向开头第一个,e往后遍历相同的 5 int t,i,j=n; 6 fo... 阅读全文
posted @ 2014-11-21 23:45 xcw0754 阅读(218) 评论(0) 推荐(0) 编辑