Redian新闻
>
中文的citations原文用翻译吗?还是翻译google列表就行了
avatar
中文的citations原文用翻译吗?还是翻译google列表就行了# Immigration - 落地生根
a*y
1
能用另外一个stack来保存结果,最后再打印,但是假如让你每个level之间print 换行
,怎么办?
这题的变化是,给你任何一个height的level,start from there to print up
avatar
s*r
2
是以qualified transaction post的日期来计还是以收到6% cashback的日期来算?
另外这个年按calender year吗?
avatar
m*q
3
中文的citations原文用翻译吗?还是翻译google列表就行了?先谢谢了!
avatar
l*c
4
新手我试一下哈
typedef struct Node{
int value;
int level;
struct Node *left;
struct Node *right;
} node;
void_print(int LEVEL)
{
node *root;
if (LEVEL==0) return;
node *tmp = root;
queue.push(tmp);
stack.push(tmp);
while (queue.front()->level < LEVEL) {
int tmp_level = queue.front()->level;
while(queue.front()->level==tmp_level) {
node *tmp = queue.pop_front();
queue.push_back(tmp->left);
queue.push_back(tmp->right);
stack.push_back(tmp->left);
stack.push_back(tmp->right);
}
}
while(!stack.isempty()) {
int tmp_level = stack.top.level;
while (stack.top.level==tmp_level) printf("%d",stack.pop_back()->value);
printf("\n");
}
}
avatar
g*n
5
lz先说清楚到底是bc还是bcp
bcp是6k,按日历年
bc是6500,从申卡算起
avatar
e*r
6
不用原文,用google translate 翻译google列表就行。
或者知网列表也可以

【在 m**q 的大作中提到】
: 中文的citations原文用翻译吗?还是翻译google列表就行了?先谢谢了!
avatar
b*g
7
struct Node
{
Value value;
Node * left;
Node * right;
}
void printBT(Node * root);
void printBT(vector & v1);
void printBT(Node * root)
{
vector v1;
v1.push_back(root);
printBT(v1);
}
// recursively printBT Date structure: using two vectors -- v1 holds nodes
of current level, v2 hold nodes of next level;
void printBT(vector & v1)
{
if ( v1.empty() )
return;
vector v2;
Node * node;
for (int i = 0; i < v1.size(); i++) // Push all children of v1 into v2;
{
node = v1[i];
if (node->left != NULL)
v2.push_back( node->left )
if (node->right != NULL)
v2.push_back( node->right )
}
printBT(v2); // call function PrintBT (v2), if v2 is empty, then means
no nodes at this level, just return;
for (int i = 0; i < v1.size(); i++) // print nodes at current level
{
node = v[i];
cout << node->value << " ";
}
cout << endl;
}

【在 a*******y 的大作中提到】
: 能用另外一个stack来保存结果,最后再打印,但是假如让你每个level之间print 换行
: ,怎么办?
: 这题的变化是,给你任何一个height的level,start from there to print up

avatar
x*i
8
i thibk bce bcp
both cap 6k
both calendar year.
avatar
m*q
9
谢谢了,版主
avatar
a*y
10
唉,你们这都是什么啊
那个明白人来给说说
avatar
s*r
11
是bcp,多谢楼上两位指正和回答。
另外有个问题:
那这6000是按照刷卡charge的日期算还是按照给cash back credit的日期算,貌似需要
下下个statement才能出6%的credit。
比如说我今年十二月份刷了6000的grocery,照理应该明年一月或二月的statemnt才会
出来
statement credit。那我明年再刷6000的grocery,还会拿到6%的statement credit吗?
citi dividend是按照post cashback的日期算的,不知道amex是不是也这么干。

【在 g**n 的大作中提到】
: lz先说清楚到底是bc还是bcp
: bcp是6k,按日历年
: bc是6500,从申卡算起

avatar
l*g
12
请问版主,我在知网上面用google translate,他只能翻译一小部分,关键的例如引用
的文章标题跟期刊名字都没有翻译成英文。本来想用google scholar的结果,但是发现
知网上搜到的结果多一点。
请问怎么生成英文的引用呢,谢谢

【在 e******r 的大作中提到】
: 不用原文,用google translate 翻译google列表就行。
: 或者知网列表也可以

avatar
b*g
13
刚才有几个笔误,现在再看看吧。

【在 a*******y 的大作中提到】
: 唉,你们这都是什么啊
: 那个明白人来给说说

avatar
b*i
14
自己先弄清楚再回答别人的问题

【在 x*******i 的大作中提到】
: i thibk bce bcp
: both cap 6k
: both calendar year.

avatar
Z*Z
15
不错,和倒着打印链表差不多

【在 b******g 的大作中提到】
: 刚才有几个笔误,现在再看看吧。
avatar
f*w
16
话说我今年unlimited刚结束,剩下的两个月怎么算那
还有我从来也没注意这个rewards是啥时候post呢,closing date还是due date,我刚
看了下两个月没post了,不知道怎么回事。

【在 g**n 的大作中提到】
: lz先说清楚到底是bc还是bcp
: bcp是6k,按日历年
: bc是6500,从申卡算起

avatar
l*c
17
So, I think that another BULL GUY is using recursive to push_back the lower
layer's values into container. And when it reaches the lowest level begin
to print, then the 2nd lowest layer's values printed.
I am trying to use non-recursive means. From the highest level, push the
node into a queue (for next level) and a stack for final printing. When the
level popped out from the queue increases to the lower level, check whether
it is the objective. If yes, stop and print everything in the stack. Because
it is a LIFO, the printed result is like the lower layer printed first. If
no, continue to pop the node from the queue and push this node's leaves into
this queue and the stack... until you reach the level you need.
avatar
m*q
18
有谁知道这个6000的cutoff怎么算么?
avatar
Z*Z
19
我觉得你的思路是对的。实现上,同递归的版本比起来,有些可以改进。。。
假设树是full and complete的,一共有N个节点。那个递归的写法的空间复杂度 的大头
就是N。而你的写法,到最后,栈里面存了所有的N个节点,队列里面还有最后一层N/2
个节点,一共是3N/2,再加上你貌似给每个node还加了一个level的field。。。

lower
the
whether
Because
If
into

【在 l****c 的大作中提到】
: So, I think that another BULL GUY is using recursive to push_back the lower
: layer's values into container. And when it reaches the lowest level begin
: to print, then the 2nd lowest layer's values printed.
: I am trying to use non-recursive means. From the highest level, push the
: node into a queue (for next level) and a stack for final printing. When the
: level popped out from the queue increases to the lower level, check whether
: it is the objective. If yes, stop and print everything in the stack. Because
: it is a LIFO, the printed result is like the lower layer printed first. If
: no, continue to pop the node from the queue and push this node's leaves into
: this queue and the stack... until you reach the level you need.

avatar
l*c
20
Yes, as a beginner, I still could not consider the things like complexity.
The level I could reach is to finish question...... How to improve?
In addition, the reason I added the level is that lz's asking to print the
values of levels higher than a particular one.

大头
/2

【在 Z*****Z 的大作中提到】
: 我觉得你的思路是对的。实现上,同递归的版本比起来,有些可以改进。。。
: 假设树是full and complete的,一共有N个节点。那个递归的写法的空间复杂度 的大头
: 就是N。而你的写法,到最后,栈里面存了所有的N个节点,队列里面还有最后一层N/2
: 个节点,一共是3N/2,再加上你貌似给每个node还加了一个level的field。。。
:
: lower
: the
: whether
: Because
: If

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