Redian新闻
>
求coach专卖店的25% off coupon
avatar
求coach专卖店的25% off coupon# Fashion - 美丽时尚
c*t
1
这次电面是个印度人,说话非常客气。
1. biggest challenge in your current project.
2. how to serialize/deserialize a binary tree.
说实话这个题确实写过,不过写deserialize的时候还是浪费了一些时间。而且有一些
corner cases没有完全考虑好。被指出了两个bug。
follow up:
how to test your methods? write sample test cases.
how to deserialize a binary tree based on network stream?
how to serialize/deserialize a tree with arbitrary number of children?
只能说发挥的一般吧。说实话希望运气能好一些。祝大家都拿到满意的offer!
avatar
t*u
2
请教除了chase $200,现在还有哪些银行有开 checking or saving账户的好deal?
Thank you.--
avatar
l*n
3
请问哪位mm能不能转让一张coach专卖店的25% off coupon
avatar
p*o
4
加油!
avatar
c*t
6
嘿,大牛,谢谢

【在 p**o 的大作中提到】
: 加油!
avatar
r*p
7
别搞上瘾了,不值得
avatar
M*5
8
这个how to deserialize on network stream应该怎么答?
avatar
v*h
9
Chase现在有300的checking.我刚办完200的就收到了这个300的,合起来saving一共500
。。真无语
avatar
w*a
10
BLESS 祝拿到onsite
avatar
s*d
11
收到chase两个不同的coupon 一个400一个500不知道能不能都用?

★ 发自iPhone App: ChineseWeb 8.7

【在 t***u 的大作中提到】
: 请教除了chase $200,现在还有哪些银行有开 checking or saving账户的好deal?
: Thank you.--

avatar
c*t
12
应该是用一个reader来读取stream吧。

【在 M********5 的大作中提到】
: 这个how to deserialize on network stream应该怎么答?
avatar
e*s
13
那跟在内存里读有什么区别吗?

【在 c*****t 的大作中提到】
: 应该是用一个reader来读取stream吧。
avatar
c*t
14
不需要内存里有整个的serialized string

【在 e***s 的大作中提到】
: 那跟在内存里读有什么区别吗?
avatar
j*y
15
bless.
看来 serialize/deserialize 是高频题目阿

【在 c*****t 的大作中提到】
: 这次电面是个印度人,说话非常客气。
: 1. biggest challenge in your current project.
: 2. how to serialize/deserialize a binary tree.
: 说实话这个题确实写过,不过写deserialize的时候还是浪费了一些时间。而且有一些
: corner cases没有完全考虑好。被指出了两个bug。
: follow up:
: how to test your methods? write sample test cases.
: how to deserialize a binary tree based on network stream?
: how to serialize/deserialize a tree with arbitrary number of children?
: 只能说发挥的一般吧。说实话希望运气能好一些。祝大家都拿到满意的offer!

avatar
e*s
16
但是在deserialize的时候也不学要把整个string读出来啊。
也是一个char一个char地读的吧?

【在 c*****t 的大作中提到】
: 不需要内存里有整个的serialized string
avatar
c*t
17
这次电面是个印度人,说话非常客气。
1. biggest challenge in your current project.
2. how to serialize/deserialize a binary tree.
说实话这个题确实写过,不过写deserialize的时候还是浪费了一些时间。而且有一些
corner cases没有完全考虑好。被指出了两个bug。
follow up:
how to test your methods? write sample test cases.
how to deserialize a binary tree based on network stream?
how to serialize/deserialize a tree with arbitrary number of children?
只能说发挥的一般吧。说实话希望运气能好一些。祝大家都拿到满意的offer!
avatar
p*o
18
加油!
avatar
c*t
19
嘿,大牛,谢谢

【在 p**o 的大作中提到】
: 加油!
avatar
M*5
20
这个how to deserialize on network stream应该怎么答?
avatar
w*a
21
BLESS 祝拿到onsite
avatar
c*t
22
应该是用一个reader来读取stream吧。

【在 M********5 的大作中提到】
: 这个how to deserialize on network stream应该怎么答?
avatar
e*s
23
那跟在内存里读有什么区别吗?

【在 c*****t 的大作中提到】
: 应该是用一个reader来读取stream吧。
avatar
c*t
24
不需要内存里有整个的serialized string

【在 e***s 的大作中提到】
: 那跟在内存里读有什么区别吗?
avatar
j*y
25
bless.
看来 serialize/deserialize 是高频题目阿

【在 c*****t 的大作中提到】
: 这次电面是个印度人,说话非常客气。
: 1. biggest challenge in your current project.
: 2. how to serialize/deserialize a binary tree.
: 说实话这个题确实写过,不过写deserialize的时候还是浪费了一些时间。而且有一些
: corner cases没有完全考虑好。被指出了两个bug。
: follow up:
: how to test your methods? write sample test cases.
: how to deserialize a binary tree based on network stream?
: how to serialize/deserialize a tree with arbitrary number of children?
: 只能说发挥的一般吧。说实话希望运气能好一些。祝大家都拿到满意的offer!

avatar
e*s
26
但是在deserialize的时候也不学要把整个string读出来啊。
也是一个char一个char地读的吧?

【在 c*****t 的大作中提到】
: 不需要内存里有整个的serialized string
avatar
m*a
27
same question here.
How to serialize the tree if want to deserialize it as a stream?

【在 e***s 的大作中提到】
: 但是在deserialize的时候也不学要把整个string读出来啊。
: 也是一个char一个char地读的吧?

avatar
u*o
28
mark一下
avatar
b*w
29

Could I think of this as original problem with a larger scale?

【在 m********a 的大作中提到】
: same question here.
: How to serialize the tree if want to deserialize it as a stream?

avatar
b*w
30
When data is transfered by network, Serialize it by level order. When
deserializing, write it to file if no enough memory space left and
constructed tree is complete. Do this in iterative waay. In the last these
files are also organized in tree structure.
avatar
a*9
31
一定要interative么,能不能还是用recussion,只是比如说当临时储存的文件空了的
时候再读一下stream?

【在 b*******w 的大作中提到】
: When data is transfered by network, Serialize it by level order. When
: deserializing, write it to file if no enough memory space left and
: constructed tree is complete. Do this in iterative waay. In the last these
: files are also organized in tree structure.

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