Redian新闻
>
请教贷款买房退税的问题(不是8000)
avatar
请教贷款买房退税的问题(不是8000)# Living
D*6
1
第一次:
why Amazon
why good fit
find the min in an array. (coding, read to him)
find the first k smallest in an array.
how to implement arraylist
explain consistent hashing, what is the disadvantage
sth about how to grep some information from a log file, don't remember
details
第二次:
design a generic tree API
design html classes. how to use the tree API to create html tree
regexp to grep phone numbers from files
what is overwriting, overloading, inheritance, delegation, interface
what needs improveme
avatar
h*n
2
听说房贷是可以退税的,请问有这个说法吗?需要填什么表?我看了一眼精华区,说贷
款和8000的比较多,没找到讲贷款退税的。
另外,请推荐一个好的报税软件(除了贷款买房外没有其它特殊收支)。谢谢!
avatar
s*l
3
bless lz~
"serialize and re-construct binary tree. (coding, read to him)"
这个是 给个binary tree 然后变成link list 然后再重建原来的binary tree?
avatar
N*E
4
房贷利息是可以退税的。TURBO TAX can handle this.
avatar
D*6
5
变成string, 就是很standard的binary tree serialize to preorder and inorder
strings, then re-create the tree from them
对了, 你怎么投的apple的??
谢谢

【在 s********l 的大作中提到】
: bless lz~
: "serialize and re-construct binary tree. (coding, read to him)"
: 这个是 给个binary tree 然后变成link list 然后再重建原来的binary tree?

avatar
h*n
6
谢谢!请问报税软件是买一次,以后每年都能用,还是需要每年买一次新版本?
avatar
f*5
7
your background is JAVA?
or the requirement of postion is JAVA

【在 D****6 的大作中提到】
: 第一次:
: why Amazon
: why good fit
: find the min in an array. (coding, read to him)
: find the first k smallest in an array.
: how to implement arraylist
: explain consistent hashing, what is the disadvantage
: sth about how to grep some information from a log file, don't remember
: details
: 第二次:

avatar
h*b
8
在BJ看到有人买turbo tax软件,估计是当年用的吧。我家是老公用网上的tubo tax,
州税+联邦税一起报,大概付了107元钱。
avatar
s*s
9
多谢。祝早日拿到offer.
avatar
h*b
10
哦,是turbo tax, 不是tubo tax.
avatar
s*l
11
哦~ 这样子~
我就是本着 投了总比不投好的原则 网投的~
其实 我是想去apple做cs 结果他们面我ee...

【在 D****6 的大作中提到】
: 变成string, 就是很standard的binary tree serialize to preorder and inorder
: strings, then re-create the tree from them
: 对了, 你怎么投的apple的??
: 谢谢

avatar
N*E
12
报税软件每年买一次新版本 as every year tax rate is different and there are
always changes with tax regulations. Turbo tax is sold everywhere, COSTCO,
office dept, online, etc. Get deluxe version and search for coupons or
discount.
avatar
j*l
13
Cong~, 俺去年7月第一轮的电面的第二题就问了serialize binary tree, 当时准备不
充分,挂了。我告诉他可以用Preorder + Inorder, 迅速反问我如何编写代码,我只好
说我知道这个结论可行,但是想不起来具体怎么操作了。然后给了一个只适合存储完全
二叉树的一维数组方法(参考堆的一维数组表示法), 结果人家又听不大懂这个方法,又
问复杂度,我鬼使神差的说是O(2^h), h是平均高度,其实应该直接说O(n),人家又以为
我说成了指数复杂度...
于是第二天就是客气的拒信,显然认为我不行。
avatar
c*y
14
如果收入不高可以用irs网上的免费保税软件算, 然后efile。 很快很好。
avatar
j*l
15
我就写个很简洁的从前序和中序序列重建二叉树的代码吧,以飨版友。
TreeNode* rebuild(char *pstr, char *istr, int n)
{
if (n <= 0)
return NULL;
TreeNode* root = new TreeNode;
root->data = *pstr;
char* iter;
for (iter = istr; iter < istr + n; iter++)
if (*iter == *pstr)
break;
int k = iter - istr;
root->left = rebuild(pstr + 1, istr, k);
root->right = rebuild(pstr + k + 1, iter + 1, n - k - 1);
return root;
}

【在 D****6 的大作中提到】
: 第一次:
: why Amazon
: why good fit
: find the min in an array. (coding, read to him)
: find the first k smallest in an array.
: how to implement arraylist
: explain consistent hashing, what is the disadvantage
: sth about how to grep some information from a log file, don't remember
: details
: 第二次:

avatar
D*6
16
这个复杂度是nlogn吗?

【在 j**l 的大作中提到】
: 我就写个很简洁的从前序和中序序列重建二叉树的代码吧,以飨版友。
: TreeNode* rebuild(char *pstr, char *istr, int n)
: {
: if (n <= 0)
: return NULL;
: TreeNode* root = new TreeNode;
: root->data = *pstr;
: char* iter;
: for (iter = istr; iter < istr + n; iter++)
: if (*iter == *pstr)

avatar
D*6
17
一直没投apple,因为我从没用过mac, 心理没底

【在 s********l 的大作中提到】
: 哦~ 这样子~
: 我就是本着 投了总比不投好的原则 网投的~
: 其实 我是想去apple做cs 结果他们面我ee...

avatar
D*6
18
yes. background is Java

【在 f*********5 的大作中提到】
: your background is JAVA?
: or the requirement of postion is JAVA

avatar
D*h
19
bless!
design html classes. how to use the tree API to create html tree
谁给说说?

【在 D****6 的大作中提到】
: 第一次:
: why Amazon
: why good fit
: find the min in an array. (coding, read to him)
: find the first k smallest in an array.
: how to implement arraylist
: explain consistent hashing, what is the disadvantage
: sth about how to grep some information from a log file, don't remember
: details
: 第二次:

avatar
y*c
20

htmltree is just an example of marshaling/demarshaling tree.
From html to tree, when we see a tag current top of a stack S and then push this tag. When we see a tag the stack.
Tree to html, a traversal.
For the API, just need AddEdge(treenode* parent, treenode* child)?

【在 D***h 的大作中提到】
: bless!
: design html classes. how to use the tree API to create html tree
: 谁给说说?

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