#Triplet

leetcode 334. Increasing Triplet Subsequence

334.IncreasingTripletSubsequencehttps://www.cnblogs.com/grandyang/p/5194599.html要求时间复杂度为O(N),空间复杂度为O(1)。解题思路:用a来记录最小的数,b来记录次小的数。如果当前数比之前的数还小,则需要更新。当a、b不需要更新时,则证...