首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >LeetCode 0376 - Wiggle Subsequence

LeetCode 0376 - Wiggle Subsequence

作者头像
Reck Zhang
发布2021-08-11 11:33:14
发布2021-08-11 11:33:14
17800
代码可运行
举报
文章被收录于专栏:Reck ZhangReck Zhang
运行总次数:0
代码可运行

Wiggle Subsequence

Desicription

A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and negative. The first difference (if one exists) may be either positive or negative. A sequence with fewer than two elements is trivially a wiggle sequence.

For example, [1,7,4,9,2,5] is a wiggle sequence because the differences (6,-3,5,-7,3) are alternately positive and negative. In contrast, [1,4,7,2,5] and [1,7,4,5,5] are not wiggle sequences, the first because its first two differences are positive and the second because its last difference is zero.

Given a sequence of integers, return the length of the longest subsequence that is a wiggle sequence. A subsequence is obtained by deleting some number of elements (eventually, also zero) from the original sequence, leaving the remaining elements in their original order.

Example 1:

代码语言:javascript
代码运行次数:0
运行
复制
Input: [1,7,4,9,2,5]
Output: 6
Explanation: The entire sequence is a wiggle sequence.

Example 2:

代码语言:javascript
代码运行次数:0
运行
复制
Input: [1,17,5,10,13,15,10,5,16,8]
Output: 7
Explanation: There are several subsequences that achieve this length. One is [1,17,10,13,10,16,8].

Example 3:

代码语言:javascript
代码运行次数:0
运行
复制
Input: [1,2,3,4,5,6,7,8,9]
Output: 2

Follow up:

Can you do it in O(n) time?

Solution

代码语言:javascript
代码运行次数:0
运行
复制
class Solution {
public:
    int wiggleMaxLength(std::vector<int>& nums) {
        
        if(nums.empty()) {
            return 0;
        }
        
        bool isPositive_1 = false;
        auto stack_1 = std::stack<int>();
        for(int i = 0; i < nums.size(); i++) {
            if(i == 0) {
                stack_1.push(nums[i]);
            } else {
                if(isPositive_1) {
                    if(nums[i] > stack_1.top()) {
                        stack_1.pop();
                        stack_1.push(nums[i]);
                    } else if(nums[i] < stack_1.top()) {
                        stack_1.push(nums[i]);
                        isPositive_1 = false;
                    }
                } else {
                    if(nums[i] > stack_1.top()) {
                        stack_1.push(nums[i]);
                        isPositive_1 = true;
                    } else if(nums[i] < stack_1.top()) {
                        stack_1.pop();
                        stack_1.push(nums[i]);
                    }
                }
            }
        }

        bool isPositive_2 = true;
        auto stack_2 = std::stack<int>();
        for(int i = 0; i < nums.size(); i++) {
            if(i == 0) {
                stack_2.push(nums[i]);
            } else {
                if(isPositive_2) {
                    if(nums[i] > stack_2.top()) {
                        stack_2.pop();
                        stack_2.push(nums[i]);
                    } else if(nums[i] < stack_2.top()) {
                        stack_2.push(nums[i]);
                        isPositive_2 = false;
                    }
                } else {
                    if(nums[i] > stack_2.top()) {
                        stack_2.push(nums[i]);
                        isPositive_2 = true;
                    } else if(nums[i] < stack_2.top()) {
                        stack_2.pop();
                        stack_2.push(nums[i]);
                    }
                }
            }
        }

        return std::max(stack_1.size(), stack_2.size());
    }
};
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019-07-02,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Wiggle Subsequence
    • Desicription
    • Solution
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档