首页 > TAG信息列表 > monotone

算法学习 (门徒计划)4-2 单调栈(Monotone-Stack)及经典问题 学习笔记

算法学习 (门徒计划)4-2 单调栈(Monotone-Stack)及经典问题 学习笔记 前言单调栈基础性质代码实现总结 经典例题LeetCode 155. 最小栈 (基础)解题思路 LeetCode 496. 下一个更大元素 I (单调栈的常见应用1)解题思路示例代码 LeetCode 503. 下一个更大元素 II (单调栈的常见应用2)解题

[LeetCode] 926. Flip String to Monotone Increasing

A string of '0's and '1's is monotone increasing if it consists of some number of '0's (possibly 0), followed by some number of '1's (also possibly 0.) We are given a string S of '0's and '1's, a

738. Monotone Increasing Digits

/** * 738. Monotone Increasing Digits * https://leetcode.com/problems/monotone-increasing-digits/description/ * * Given a non-negative integer N, find the largest number that is less than or equal to N with monotone increasing digits. (Recall that an

[Swift]LeetCode738. 单调递增的数字 | Monotone Increasing Digits

Given a non-negative integer N, find the largest number that is less than or equal to Nwith monotone increasing digits. (Recall that an integer has monotone increasing digits if and only if each pair of adjacent digits x and y satisfy x <= y.)  Examp

Flip String to Monotone Increasing

A string of '0's and '1's is monotone increasing if it consists of some number of '0's (possibly 0), followed by some number of '1's (also possibly 0.) We are given a string S of '0's and '1's, a