Redian新闻
>
剧组经典爆笑吵架,全是“蛋”·太他妈搞笑·大家乐乐··
avatar
剧组经典爆笑吵架,全是“蛋”·太他妈搞笑·大家乐乐··# Joke - 肚皮舞运动
y*m
1
这个简单java的,有更简洁明了完善高效结构化的么,thx!
class BinaryTree {
private int data;
private int minNode = Integer.MAX_VALUE;
private BinaryTree leftpoiter;
private BinaryTree rightpoiter;
public BinaryTree() {
}
public BinaryTree(int data) {
this.data = data;
leftpoiter = null;
rightpoiter = null;
}
public void getMinNode(int key) {
getMinNode(this, key);
}
public void getMinNode(BinaryTree root, int key) {
if (root != null) {
if (root.data > key) {
minNode = (root.data < minNode) ? root.data : minNode;
getMinNode(root.leftpoiter, key);
} else
getMinNode(root.rightpoiter, key);
}
}
public boolean searchkey(int key) {
return searchkey(this, key);
}
public boolean searchkey(BinaryTree root, int key) {
if (root == null)
return false;
else if (root.data == key)
return true;
else if (key >= root.data)
return searchkey(root.rightpoiter, key);
return searchkey(root.leftpoiter, key);
}
public void createTree(int data[]) {
this.data = data[0];
for (int i = 1; i < data.length; i++) {
this.insertTree(this, data[i]);
}
}
public void insertTree(BinaryTree root, int data) {
if (data >= root.data) {
if (root.rightpoiter == null)
root.rightpoiter = new BinaryTree(data);
else
insertTree(root.rightpoiter, data);
} else {
if (root.leftpoiter == null)
root.leftpoiter = new BinaryTree(data);
else
insertTree(root.leftpoiter, data);
}
}
}
avatar
G*g
2
前段时间基本没啥房可看,一到三月每天都上不少房,有点看花眼了。难道卖家们约好
了共进退么?
avatar
w*y
4
3月到7月是卖房旺季, 又不只是今年才这样

【在 G*******g 的大作中提到】
: 前段时间基本没啥房可看,一到三月每天都上不少房,有点看花眼了。难道卖家们约好
: 了共进退么?

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