avatar
s*1
2
如题。
现需要求购些UR点数转CO/UA,我知道Sapphire Preferred可以直接转。Freedom和普通
Sapphire怎么转?别人先转到我的CC上,我再转过去?但是我没有在UR里面看到相关选
项啊。
包子求解答。
avatar
b*t
3
必须要permanent job吗?
谢谢
avatar
i*a
4
我都看醉了
主题就是全球华人华侨春节大联欢
很多海外华人的身影。虽然我一个都不认识。
还有很多小鲜肉,比中央卫视活泼多了。就是韩国那个女歌手组合裙子太短,看得我心
惊肉跳的。
avatar
p*r
5
用stack/list记录node

【在 b********e 的大作中提到】
: 要求每个level一行
: thanks

avatar
l*t
6
ur rewards center
manage ultimate rewards
combine points
这里面可以转

【在 s********1 的大作中提到】
: 如题。
: 现需要求购些UR点数转CO/UA,我知道Sapphire Preferred可以直接转。Freedom和普通
: Sapphire怎么转?别人先转到我的CC上,我再转过去?但是我没有在UR里面看到相关选
: 项啊。
: 包子求解答。

avatar
O*O
7
no

【在 b*****t 的大作中提到】
: 必须要permanent job吗?
: 谢谢

avatar
a*9
8
用QUEUE入队

【在 b********e 的大作中提到】
: 要求每个level一行
: thanks

avatar
b*i
9
Go to ultimate mall-combine points- tranfer to others
avatar
b*t
10
谢谢!

【在 O*O 的大作中提到】
: no
avatar
f*o
11
可以中序遍历,每一层一个queue, 然后打印
空间比时间重要的话,可以中序搜索,每次搜多一层,每次打印一层
avatar
s*1
12
谢谢。
可这里面combine的是我自己的啊,如果别人的Freedom怎么转给我?

【在 l******t 的大作中提到】
: ur rewards center
: manage ultimate rewards
: combine points
: 这里面可以转

avatar
g*e
13
no
any job title is good as long as the salary and job title can allow you to
stay in this country legally.
avatar
g*e
14
从root开始,把所有子节点enqueue以后,再加一个分隔符enqueue
以后每遇到一个分隔符,就再加一个分隔符enqueue,直到queue为空就完了

【在 f*****o 的大作中提到】
: 可以中序遍历,每一层一个queue, 然后打印
: 空间比时间重要的话,可以中序搜索,每次搜多一层,每次打印一层

avatar
s*1
15
OK。
我去看看。。。

【在 b******i 的大作中提到】
: Go to ultimate mall-combine points- tranfer to others
avatar
f*o
16
嗯,貌似简单的广度优先搜索就行。

【在 g**e 的大作中提到】
: 从root开始,把所有子节点enqueue以后,再加一个分隔符enqueue
: 以后每遇到一个分隔符,就再加一个分隔符enqueue,直到queue为空就完了

avatar
l*t
17
你点开看看就知道啦
"to.."里面有个选项“others”

【在 s********1 的大作中提到】
: 谢谢。
: 可这里面combine的是我自己的啊,如果别人的Freedom怎么转给我?

avatar
b*e
18
queue里面怎么加分隔符?

【在 g**e 的大作中提到】
: 从root开始,把所有子节点enqueue以后,再加一个分隔符enqueue
: 以后每遇到一个分隔符,就再加一个分隔符enqueue,直到queue为空就完了

avatar
s*1
19
OK.多谢楼上2位。
包子送上 =)
avatar
i*1
20
if we wants to print beautiful pics (which adds spaces to align nodes), then
I guess we need to do certain preprocessing. We have to know the depth even
it is a complete binary tree.
if we only wants to seperate them to different lines, then using BFS.
one way to avoid using "分隔符", is to use two arrays instead. (swap back
forth)
avatar
f*5
21
queue.push_back(NULL);

【在 b********e 的大作中提到】
: queue里面怎么加分隔符?
avatar
j*l
22
你不判断分隔符是否在队尾是不行的,否则会死循环,一路追加分隔符到队尾。

【在 g**e 的大作中提到】
: 从root开始,把所有子节点enqueue以后,再加一个分隔符enqueue
: 以后每遇到一个分隔符,就再加一个分隔符enqueue,直到queue为空就完了

avatar
i*e
23
enqueue root
enqueue '\n'
while queue is not empty
if current node is '\n'
enqueue '\n'
else
enqueue all children of current node
example:
a
b1 b2
c1 c2 nil c3
nil nil nil d1
nil
a \n
a \n b1 b2 \n
a \n b1 b2 \n c1 c 2 c3 \n
a \n b1 b2 \n c1 c 2 c3 \n d1 \n
avatar
j*l
24
你不判断分隔符是否在队尾是不行的,否则会死循环,一路追加分隔符到队尾。

【在 i*****e 的大作中提到】
: enqueue root
: enqueue '\n'
: while queue is not empty
: if current node is '\n'
: enqueue '\n'
: else
: enqueue all children of current node
: example:
: a
: b1 b2

avatar
i*e
25
对,多谢提醒
应该在循环的时候加上计数,如果上一次没有child enqueue,则退出

【在 j**l 的大作中提到】
: 你不判断分隔符是否在队尾是不行的,否则会死循环,一路追加分隔符到队尾。
avatar
w*a
26
void printBinaryTree (Node * root) {
Node * myqueue[MAX_NODE_NUM] = { 0...MAX_NODE_NUM-1 = (Node *)0 };
int queue_pointer = 0;
int queue_size = 0;
while (root != 0) {
print ("%d\n", root->value);
if (root->lc != 0) {
myqueue[queue_size++] = root->lc;
}
if (root->rc != 0) {
myqueue[queue_size++] = root->rc;
}
root = myqueue[queue_pointer++];
}
}
avatar
j*l
27
这样就可以了:
enqueue root
enqueue '\n'
while queue is not empty
{
dequeue and set current node with the returned value
print current node
if current node is '\n' and queue is not empty
enqueue '\n'
else
enqueue all children of current node
}

【在 i*****e 的大作中提到】
: 对,多谢提醒
: 应该在循环的时候加上计数,如果上一次没有child enqueue,则退出

avatar
w*a
28
sorry,刚才没注意是要每一个level在一行输出,代码需要改改。

【在 w******a 的大作中提到】
: void printBinaryTree (Node * root) {
: Node * myqueue[MAX_NODE_NUM] = { 0...MAX_NODE_NUM-1 = (Node *)0 };
: int queue_pointer = 0;
: int queue_size = 0;
: while (root != 0) {
: print ("%d\n", root->value);
: if (root->lc != 0) {
: myqueue[queue_size++] = root->lc;
: }
: if (root->rc != 0) {

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