//将数组n中的0除去,并返回压缩后的数组
public int[] ys(int[] n){
int count=0;
for(int t:n){
if(t!=0)count++;
}
int[] c = new int[count];
count=0;
for(int t:n){
if(t!=0)c[count++]=t;
}
return c;
}
小算法酱油笔记之数组压缩0
最新推荐文章于 2022-05-20 19:37:10 发布