653. Two Sum IV - Input is a BST-easy
Posted qvq-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了653. Two Sum IV - Input is a BST-easy相关的知识,希望对你有一定的参考价值。
我不懂有没有收藏之类的功能,收藏别人的解法。
tql,不懂为什么直接比较set里的值,不是两个数sum么
有一些答案都用到了iterator迭代器
http://www.cplusplus.com/reference/iterator/
我的思路是Just solve it as 2-sum problem using two pointers.
但是不懂重载的两个操作符
Need to implement BSTiterator class first, which overloads two operators: ++ and *
也不是不可以用一个数组存这些数(vector存一个order遍历下来的)
还是自己c++啥都不会,呵呵
以上是关于653. Two Sum IV - Input is a BST-easy的主要内容,如果未能解决你的问题,请参考以下文章
653. Two Sum IV - Input is a BST
653. Two Sum IV - Input is a BST
653. Two Sum IV - Input is a BST
[leetcode-653-Two Sum IV - Input is a BST]