递增的三元子序列
Posted Alice_yufeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递增的三元子序列相关的知识,希望对你有一定的参考价值。
class Solution
public boolean increasingTriplet(int[] nums)
if (nums == null || nums.length < 3) return false;
int l = nums[0], m = Integer.MAX_VALUE;
for (int n : nums)
if (n <= l) l = n;
else if (n <= m) m = n;
else return true;
return false;
以上是关于递增的三元子序列的主要内容,如果未能解决你的问题,请参考以下文章