数据结构-leetcode-移除元素

数据结构-leetcode-移除元素_第1张图片

 数据结构-leetcode-移除元素_第2张图片

int removeElement(int* nums, int numsSize, int val){
    int start=0;
    int end=0;
    int flag=0;
    for(int i =0;i

注:时间复杂度为O(N),额外空间复杂度为O(1).

你可能感兴趣的:(数据结构)