智慧屏安装APP的最佳实践与跨平台小程序开发的结合
743
2022-11-09
LeetCode-1286. Iterator for Combination
Design an Iterator class, which has:
A constructor that takes a stringcharacters ofsorted distinctlowercase English letters and a numbercombinationLength as arguments.A functionnext()that returns the next combination of lengthcombinationLength inlexicographical order.A functionhasNext()that returnsTrue if and only if there exists a next combination.
Example:
CombinationIterator iterator = new CombinationIterator("abc", 2); // creates the iterator.iterator.next(); // returns "ab"iterator.hasNext(); // returns trueiterator.next(); // returns "ac"iterator.hasNext(); // returns trueiterator.next(); // returns "bc"iterator.hasNext(); // returns false
Constraints:
1 <= combinationLength <= characters.length <= 15There will be at most10^4 function calls per test.It's guaranteed that all calls of the functionnext are valid.
题解:
class CombinationIterator {private: vector
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~