Redian新闻
>
红鸟pay bill 的新手问题
avatar
红鸟pay bill 的新手问题# Money - 海外理财
h*o
1
请教正确答案。
网上答案是下面这样的,但如果有个child不存在哪?难道返回另一个child?
网上还有种方法用inorder找candidate, 再用preorder找最先出现的candidate,那如
果一个child不存在, 不就找到root了吗?
Node* find_lowest_common_ancestor_BT(Node* root, Node* child1, Node* child2){
if (!root) return NULL;
Node* left=NULL;
Node* right= NULL;
//if either child1 or 2 are root than root is LCA
//and since this algorithm goes from top to down, in the case of one
child is
//ancestor of the other child, the ancestor child will be hit and return.
int value = root->value();
if (value == child1->value() || value == child2->value()) return root;
left = find_lowest_common_ancestor_BT(root->left(), child1, child2);
right = find_lowest_common_ancestor_BT(root->right(), child1, child2);
if (left && right) return root;
else if (left) return left;
else return right; //include the case if left==right==NULL, return NULL;

}
avatar
a*4
2
3天前用SPG load了2100到红鸟,post出来马上用chase还款。试了用红鸟pay chase 的
credit card 成功了,可能是时间太短红鸟这边还没显示扣钱。
现在发现自己主力消费全是amex的卡,请问能不能用红鸟 pay 我的Blue cash
preferred(从没有load过红鸟)。会不会有问题。
谢谢大神们了先
avatar
s*i
3
trie
avatar
N*Q
4
经常用蓝鸟pay amex卡 没出问题过。
不建议pay 喂鸟的卡

【在 a********4 的大作中提到】
: 3天前用SPG load了2100到红鸟,post出来马上用chase还款。试了用红鸟pay chase 的
: credit card 成功了,可能是时间太短红鸟这边还没显示扣钱。
: 现在发现自己主力消费全是amex的卡,请问能不能用红鸟 pay 我的Blue cash
: preferred(从没有load过红鸟)。会不会有问题。
: 谢谢大神们了先

avatar
h*o
5
谢谢。我知道答案。我就是想问一下应不应该考虑child不在tree的情况。
如果不要考虑,那我的答案应该是对的。

【在 s********i 的大作中提到】
: trie
avatar
a*4
6
了解,谢谢你,那我就放心大胆的pay amex bcp了。

【在 N*****Q 的大作中提到】
: 经常用蓝鸟pay amex卡 没出问题过。
: 不建议pay 喂鸟的卡

avatar
J*3
7
貌似有child一定在tree里面的前提 不需要去判断 你说的那个答案是bottom-up O(n)?
avatar
p*a
8
怎么用Chase信用卡还 SPG的款?

【在 a********4 的大作中提到】
: 3天前用SPG load了2100到红鸟,post出来马上用chase还款。试了用红鸟pay chase 的
: credit card 成功了,可能是时间太短红鸟这边还没显示扣钱。
: 现在发现自己主力消费全是amex的卡,请问能不能用红鸟 pay 我的Blue cash
: preferred(从没有load过红鸟)。会不会有问题。
: 谢谢大神们了先

avatar
h*o
9
是 recursive.

)?

【在 J****3 的大作中提到】
: 貌似有child一定在tree里面的前提 不需要去判断 你说的那个答案是bottom-up O(n)?
avatar
a*4
10
Chase checking account......

【在 p********a 的大作中提到】
: 怎么用Chase信用卡还 SPG的款?
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。