首页 > 其他 > 详细

[Leetcode]376. Wiggle Subsequence

时间:2018-01-24 16:16:48      阅读:232      评论:0      收藏:0      [点我收藏+]

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.

思路: 假设在下标为 i 的位置已经知道了前面最长wiggle subsequence 的值, 那么对于 i 这个位置wiggle subsequence 的值要么和前面一样,要么比之前多1;

 1 class Solution {
 2 public:
 3     int wiggleMaxLength(vector<int>& nums) {
 4         if (nums.size() <= 1)
 5             return nums.size();
 6         int dp[nums.size()], diff = nums[1] - nums[0]; dp[0] = 1;
 7         int flag = (diff > 0 ? -1 : 1);
 8         for (int i = 1; i != nums.size(); ++i){
 9             diff = nums[i] - nums[i-1];
10             if ((flag > 0 && diff > 0) || (flag < 0 && diff < 0) || !diff)
11                 dp[i] = dp[i-1];
12             else {
13                 dp[i] = dp[i-1] + 1;
14                 flag = diff;
15             }
16         }
17         return dp[nums.size() - 1];
18     }
19 };

 

[Leetcode]376. Wiggle Subsequence

原文:https://www.cnblogs.com/David-Lin/p/8342030.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!