Redian新闻
>
请问向国内转一两万美元的话怎么最划算?
avatar
请问向国内转一两万美元的话怎么最划算?# Money - 海外理财
l*h
1
搜索了一下,网上一种常见的解法如下:pathLen一直增加,不断把节点的值加进去。
我怎么觉得有错, 比如
1
/ \
2 3
\ /\
4 5 6
打印出来岂不是
1, 2, 4
1, 2, 4, 3, 5
1, 2, 4, 3, 6
了?
http://k2code.blogspot.com/2011/05/root-to-leaf-path.html
/*
Given a binary tree, print out all of its root-to-leaf
paths, one per line. Uses a recursive helper to do the work.
*/
void printPaths(struct node* node) {
int path[1000]; printPathsRecur(node, path, 0);
}
/*
Recursive helper function -- given a node, and an array containing
the path from the root node up to but not including this node,
print out all the root-leaf paths.
*/
void printPathsRecur(struct node* node, int path[], int pathLen) {
if (node==NULL) return;
// append this node to the path array
path[pathLen] = node->data;
pathLen++;
// it's a leaf, so print the path that led to here
if (node->left==NULL && node->right==NULL) {
printArray(path, pathLen);
}
else {
// otherwise try both subtrees
printPathsRecur(node->left, path, pathLen);
printPathsRecur(node->right, path, pathLen);
}
}
// Utility that prints out an array on a line.
void printArray(int ints[], int len) {
int i;
for (i=0; i
printf("%d ", ints[i]);
}
printf("\n");
}
avatar
n*r
2
我在国内的建行和工行都有帐户
转给自己的帐户或者家人的帐户都可以
怎么样最划算?
谢谢!
avatar
h*6
3
按楼主自己的例子,为啥最后一步能把5消掉变成1, 2, 4, 3, 6。把这点想明白就对了
avatar
r*p
4
到你的美国开户行作international wire
avatar
i*i
5
写一张check到国内银行即可。等1个月吧。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。