LeetCode的medium题集合(C++实现)十六

1 Remove Duplicates from Sorted Array II

Follow up for “Remove Duplicates”:What if duplicates are allowed at most twice?For example,Given sorted array nums = [1,1,1,2,2,3],

Your function should return length = 5, with the first five elements of nums being 1, 1, 2, 2 and 3. It doesn’t matter what you leave beyond the new length.

与删除重复的元素不同,这里只删除重复数超过2的部分。与删除重复的元素做法一样,只不过多用一个标记量flag记录重复的个数是否超过2.

int removeDuplicates(vector<int>& nums)
    {
        int n=nums.size();
        if(n==0)
        return 0;
        int length=0;
        bool flag=false;
        for(int i=1;i<n;i++)
        {
            if(nums[length]!=nums[i])
            {
                nums[length+1]=nums[i];
                length++;
                flag=false;
            }
            else
            {
                if(!flag)
                {
                    flag=true;
                    nums[length+1]=nums[i];
                    length++;
                }
            }
        }
        return length+1;
    }

2 Remove Duplicates from Sorted List II

Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.For example:

Given 1->2->3->3->4->4->5, return 1->2->5.

Given 1->1->1->2->3, return 2->3.

因为相同的元素全部被删除,则链表的第一个指针可能被删,因此必须要用到指向链表第一个节点的头指针。

 ListNode* deleteDuplicates(ListNode* head) {
         if(head==NULL)
        return NULL;
        ListNode* result=new ListNode(0);
        result->next=head;
        ListNode* pre=result;
        ListNode* cur=head;
        while(cur)
        {
            if(cur->next&&cur->val==cur->next->val)
            {
              int value=cur->val;
              while(cur->next&&value==cur->next->val)
             {
             //删除第一个元素以外的重复元素
               ListNode* mid=cur->next;
               cur->next=mid->next;
               delete mid;
             }
             ListNode* t=cur;
             cur=t->next;
             delete t;  //删除第一个重复元素
             pre->next=cur;
            }
            else
            {
               pre=cur;
               cur=cur->next;
            }
        }
        return result->next;
    }
时间: 2024-10-05 11:08:19

LeetCode的medium题集合(C++实现)十六的相关文章

LeetCode的medium题集合(C++实现)十五

1 Subsets Given a set of distinct integers, nums, return all possible subsets. Note: Elements in a subset must be in non-descending order. The solution set must not contain duplicate subsets. For example,If nums = [1,2,3], a solution is: [ [3], [1],

LeetCode的medium题集合(C++实现)十

1 Permutation Sequence The set [1,2,3,-,n] contains a total of n! unique permutations.Given n and k, return the kth permutation sequence. 使用Next Permutation循环k次可以得到序列,但leetcode上提交会出现时间超过限制.下面采用数学法: 在n!个排列中,第一位元素相同的排列总是有(n?1)!个,如果p=k/(n?1)!,那么排列的第一位元素

LeetCode的medium题集合(C++实现)十四

1 Sort Colors Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.Here, we will use the integers 0, 1, and 2 to represent the color red,

LeetCode的medium题集合(C++实现)十二

1 Sqrt(x) Implement int sqrt(int x).Compute and return the square root of x. 因为这里都是整数,可以直接采用二分法求解 int mySqrt(int x) { if (x <= 1) return x; int begin = 1, end =x, mid = 0; while (begin<=end) { mid = (begin + end) / 2; if (mid<x / mid) //不要用乘法判断,否

LeetCode的medium题集合(C++实现)十一

1 Unique Paths A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked

LeetCode的medium题集合(C++实现)五

1 Combination Sum Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeated number may be chosen from C unlimited number of times. 可以采用递归的方法解决这个问题,当找到一组数之和

LeetCode的medium题集合(C++实现)六

1 Multiply Strings Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-negative. 该题实际就是利用字符串来解决大数的乘法问题.为了计算方便先将两组数翻转,将字符串转化为整数利用两个循环逐位相乘,将结果保存.然后逐位解决进位问题. s

LeetCode的medium题集合(C++实现)四

1 Next Permutation Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers. If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending or

LeetCode的medium题集合(C++实现)九

1 Jump Game Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximum jump length at that position.Determine if you are able to reach the last index. 利用两指针法