Redian新闻
>
n4 shipped,现在唯一的concern就是
avatar
n4 shipped,现在唯一的concern就是# PDA - 掌中宝
i*1
1
public void insert (int value) {
rInsert (value, root);
}
private void rInsert (int value, BSTNode node) {
if (node == null) {
node = new BSTNode (value);
} else if (value < node.value) {
rInsert (value, node.left);
} else if (value > node.value) {
rInsert (value, node.right);
}
}
This approach will work in some programming
languages ... but not Java.
不知为为何上面的程序错了?我看挺好的,为何会出错。
而且答案是java里rinsert()函数需要返回值,如private BSTNode rInsert (int
value
, BSTNode node).
这时为何?
avatar
j*e
2
如果n5是199,那古狗这个狗日的坑爹啊 哈哈
avatar
w*o
3
好像你没有把新的Node和BST链起来。你至少应该有象这样的操作:root.left = (
newly created node) or root.right = (newly created node)
好像任何Programming language都不应该work。你能说那个可以work吗?
avatar
d*0
4
你想多了

【在 j*****e 的大作中提到】
: 如果n5是199,那古狗这个狗日的坑爹啊 哈哈
avatar
x*l
5
java pass argument by value, not reference

【在 i****1 的大作中提到】
: public void insert (int value) {
: rInsert (value, root);
: }
: private void rInsert (int value, BSTNode node) {
: if (node == null) {
: node = new BSTNode (value);
: } else if (value < node.value) {
: rInsert (value, node.left);
: } else if (value > node.value) {
: rInsert (value, node.right);

avatar
m*j
6
垃圾,并不是因为价格便宜了,就不是垃圾了。

【在 j*****e 的大作中提到】
: 如果n5是199,那古狗这个狗日的坑爹啊 哈哈
avatar
i*m
7
For every object that is not a primitive type, it's passed by reference.
Only the primitive type and their wrapper are passed by value.
for example :
public void foo (Integer i) {
i = 9;
}
public static void main (String[] args) {
Integer i = new Integer (10);
foo(i);
System.out.println(i);
//The value is still 10 in i, not 9
}
avatar
n*u
8
不可能N5 199啊
估计要329
avatar
i*1
9
可是答案是要求函数增加一个返回值。其他的没变

【在 i********m 的大作中提到】
: For every object that is not a primitive type, it's passed by reference.
: Only the primitive type and their wrapper are passed by value.
: for example :
: public void foo (Integer i) {
: i = 9;
: }
: public static void main (String[] args) {
: Integer i = new Integer (10);
: foo(i);
: System.out.println(i);

avatar
c*f
10
N5很可能出来就是299或者329 没有8G版本
avatar
g*s
11


【在 i********m 的大作中提到】
: For every object that is not a primitive type, it's passed by reference.
: Only the primitive type and their wrapper are passed by value.
: for example :
: public void foo (Integer i) {
: i = 9;
: }
: public static void main (String[] args) {
: Integer i = new Integer (10);
: foo(i);
: System.out.println(i);

avatar
l*i
12
如果N5今年上市,16G的300刀左右,那这个N4价格很坑爹啊。

【在 c****f 的大作中提到】
: N5很可能出来就是299或者329 没有8G版本
avatar
g*s
13
java是pass by value no matter what. 我现在本科 刚学没多久 所以印象深刻。

【在 i********m 的大作中提到】
: For every object that is not a primitive type, it's passed by reference.
: Only the primitive type and their wrapper are passed by value.
: for example :
: public void foo (Integer i) {
: i = 9;
: }
: public static void main (String[] args) {
: Integer i = new Integer (10);
: foo(i);
: System.out.println(i);

avatar
w*n
14
我的n4已经On Vehicle for Delivery Today,过几个小时就到货

【在 j*****e 的大作中提到】
: 如果n5是199,那古狗这个狗日的坑爹啊 哈哈
avatar
n*y
15
哪天下单的?

【在 w***n 的大作中提到】
: 我的n4已经On Vehicle for Delivery Today,过几个小时就到货
avatar
w*n
16
27号晚上8点

【在 n**y 的大作中提到】
: 哪天下单的?
avatar
n*u
17
为啥这么快
我的说明天才SHIP
现在还是PENDING

【在 w***n 的大作中提到】
: 我的n4已经On Vehicle for Delivery Today,过几个小时就到货
avatar
n*u
18
我比你下单还早。。。
还PENDING。。。

【在 w***n 的大作中提到】
: 27号晚上8点
avatar
d*a
19
ship on sep 2nd
avatar
c*r
20
看来还是用的fedex

【在 w***n 的大作中提到】
: 我的n4已经On Vehicle for Delivery Today,过几个小时就到货
avatar
w*n
21
人品问题?已经拿到了。
Delivered On:
Thursday, 08/29/2013 at 4:29 P.M.
合影:
Nexus one, Galaxy Nexus, Nexus 4, Samsung Galaxy S II
avatar
m*s
22
你赶紧把那3个到amazon去trade in了。应该能拿回大概5、600刀。

人品问题?已经拿到了。Delivered On:Thursday,

【在 w***n 的大作中提到】
: 人品问题?已经拿到了。
: Delivered On:
: Thursday, 08/29/2013 at 4:29 P.M.
: 合影:
: Nexus one, Galaxy Nexus, Nexus 4, Samsung Galaxy S II

avatar
v*e
23
希望如此啊

【在 j*****e 的大作中提到】
: 如果n5是199,那古狗这个狗日的坑爹啊 哈哈
avatar
s*e
24
怎么trade in?

【在 m********s 的大作中提到】
: 你赶紧把那3个到amazon去trade in了。应该能拿回大概5、600刀。
:
: 人品问题?已经拿到了。Delivered On:Thursday,

avatar
n*u
25
这运气也太好了啊!!!

【在 w***n 的大作中提到】
: 人品问题?已经拿到了。
: Delivered On:
: Thursday, 08/29/2013 at 4:29 P.M.
: 合影:
: Nexus one, Galaxy Nexus, Nexus 4, Samsung Galaxy S II

avatar
m*s
26
去amazon trade in网站,里面会列出各种聪明电话的配置及trade-in价格。
全程免费邮寄、免费估价,免费寄回如果你不满意对方在检查你机器后的价格调整。

怎么trade in?

【在 s****e 的大作中提到】
: 怎么trade in?
avatar
w*n
27
trade in了Galaxy Nexus

【在 m********s 的大作中提到】
: 去amazon trade in网站,里面会列出各种聪明电话的配置及trade-in价格。
: 全程免费邮寄、免费估价,免费寄回如果你不满意对方在检查你机器后的价格调整。
:
: 怎么trade in?

avatar
s*y
28
N4和其他几个gap很大啊

【在 w***n 的大作中提到】
: 人品问题?已经拿到了。
: Delivered On:
: Thursday, 08/29/2013 at 4:29 P.M.
: 合影:
: Nexus one, Galaxy Nexus, Nexus 4, Samsung Galaxy S II

avatar
g*z
29
n5大胆估计它是摩托x变种

【在 j*****e 的大作中提到】
: 如果n5是199,那古狗这个狗日的坑爹啊 哈哈
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。