java实现二叉树查找树Word下载.docx

上传人:b****4 文档编号:7859695 上传时间:2023-05-09 格式:DOCX 页数:19 大小:73.02KB
下载 相关 举报
java实现二叉树查找树Word下载.docx_第1页
第1页 / 共19页
java实现二叉树查找树Word下载.docx_第2页
第2页 / 共19页
java实现二叉树查找树Word下载.docx_第3页
第3页 / 共19页
java实现二叉树查找树Word下载.docx_第4页
第4页 / 共19页
java实现二叉树查找树Word下载.docx_第5页
第5页 / 共19页
java实现二叉树查找树Word下载.docx_第6页
第6页 / 共19页
java实现二叉树查找树Word下载.docx_第7页
第7页 / 共19页
java实现二叉树查找树Word下载.docx_第8页
第8页 / 共19页
java实现二叉树查找树Word下载.docx_第9页
第9页 / 共19页
java实现二叉树查找树Word下载.docx_第10页
第10页 / 共19页
java实现二叉树查找树Word下载.docx_第11页
第11页 / 共19页
java实现二叉树查找树Word下载.docx_第12页
第12页 / 共19页
java实现二叉树查找树Word下载.docx_第13页
第13页 / 共19页
java实现二叉树查找树Word下载.docx_第14页
第14页 / 共19页
java实现二叉树查找树Word下载.docx_第15页
第15页 / 共19页
java实现二叉树查找树Word下载.docx_第16页
第16页 / 共19页
java实现二叉树查找树Word下载.docx_第17页
第17页 / 共19页
java实现二叉树查找树Word下载.docx_第18页
第18页 / 共19页
java实现二叉树查找树Word下载.docx_第19页
第19页 / 共19页
亲,该文档总共19页,全部预览完了,如果喜欢就下载吧!
下载资源
资源描述

java实现二叉树查找树Word下载.docx

《java实现二叉树查找树Word下载.docx》由会员分享,可在线阅读,更多相关《java实现二叉树查找树Word下载.docx(19页珍藏版)》请在冰点文库上搜索。

java实现二叉树查找树Word下载.docx

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

importjava.util.ArrayList;

importjava.util.List;

public 

class 

BinarySearchTree{

//树的根结点

private 

TreeNoderoot= 

null;

//遍历结点列表

List<

TreeNode>

nodelist= 

new 

ArrayList<

();

TreeNode{

int 

key;

TreeNodeleftChild;

TreeNoderightChild;

TreeNodeparent;

TreeNode(int 

key,TreeNodeleftChild,TreeNoderightChild,

TreeNodeparent){

this.key=key;

this.leftChild=leftChild;

this.rightChild=rightChild;

this.parent=parent;

}

getKey(){

return 

StringtoString(){

Stringleftkey=(leftChild== 

null 

?

"

:

String

.valueOf(leftChild.key));

Stringrightkey=(rightChild== 

.valueOf(rightChild.key));

("

+leftkey+ 

"

+key+ 

+rightkey+ 

)"

;

/**

*isEmpty:

判断二叉查找树是否为空;

若为空,返回true,否则返回false.

*

*/

booleanisEmpty(){

if 

(root== 

null){

true;

else 

{

false;

*TreeEmpty:

对于某些二叉查找树操作(比如删除关键字)来说,若树为空,则抛出异常。

void 

TreeEmpty()throwsException{

(isEmpty()){

throw 

Exception("

树为空!

);

*search:

在二叉查找树中查询给定关键字

*@paramkey

给定关键字

*@return匹配给定关键字的树结点

TreeNodesearch(int 

key){

TreeNodepNode=root;

while 

(pNode!

&

pNode.key!

=key){

(key<

pNode.key){

pNode=pNode.leftChild;

pNode=pNode.rightChild;

pNode;

*minElemNode:

获取二叉查找树中的最小关键字结点

*@return二叉查找树的最小关键字结点

*@throwsException

若树为空,则抛出异常

TreeNodeminElemNode(TreeNodenode)throwsException{

(node== 

树为空!

TreeNodepNode=node;

(pNode.leftChild!

*maxElemNode:

获取二叉查找树中的最大关键字结点

*@return二叉查找树的最大关键字结点

TreeNodemaxElemNode(TreeNodenode)throwsException{

(pNode.rightChild!

*successor:

获取给定结点在中序遍历顺序下的后继结点

*@paramnode

给定树中的结点

*@return若该结点存在中序遍历顺序下的后继结点,则返回其后继结点;

否则返回null

TreeNodesuccessor(TreeNodenode)throwsException{

//若该结点的右子树不为空,则其后继结点就是右子树中的最小关键字结点

(node.rightChild!

minElemNode(node.rightChild);

//若该结点右子树为空

TreeNodeparentNode=node.parent;

(parentNode!

node==parentNode.rightChild){

node=parentNode;

parentNode=parentNode.parent;

parentNode;

*precessor:

获取给定结点在中序遍历顺序下的前趋结点

*@return若该结点存在中序遍历顺序下的前趋结点,则返回其前趋结点;

TreeNodeprecessor(TreeNodenode)throwsException{

//若该结点的左子树不为空,则其前趋结点就是左子树中的最大关键字结点

(node.leftChild!

maxElemNode(node.leftChild);

//若该结点左子树为空

node==parentNode.leftChild){

*insert:

将给定关键字插入到二叉查找树中

insert(int 

TreeNodeparentNode= 

TreeNodenewNode= 

TreeNode(key, 

null, 

null);

root=newNode;

return;

parentNode=pNode;

(key>

//树中已存在匹配给定关键字的结点,则什么都不做直接返回

parentNode.key){

parentNode.leftChild=newNode;

newNode.parent=parentNode;

parentNode.rightChild=newNode;

从二叉查找树中删除匹配给定关键字相应的树结点

delete(int 

key)throwsException{

TreeNodepNode=search(key);

(pNode== 

树中不存在要删除的关键字!

delete(pNode);

*delete:

从二叉查找树中删除给定的结点.

*@parampNode

要删除的结点

前置条件:

给定结点在二叉查找树中已经存在

delete(TreeNodepNode)throwsException{

(pNode.leftChild== 

pNode.rightChild== 

null){ 

//该结点既无左孩子结点,也无右孩子结点

TreeNodeparentNode=pNode.parent;

(pNode==parentNode.leftChild){

parentNode.leftChild= 

parentNode.rightChild= 

pNode.rightChild!

//该结点左孩子结点为空,右孩子结点非空

parentNode.leftChild=pNode.rightChild;

pNode.rightChild.parent=parentNode;

parentNode.rightChild=pNode.rightChild;

//该结点左孩子结点非空,右孩子结点为空

parentNode.leftChild=pNode.leftChild;

parentNode.rightChild=pNode.leftChild;

//该结点左右孩子结点均非空,则删除该结点的后继结点,并用该后继结点取代该结点

TreeNodesuccessorNode=successor(pNode);

delete(successorNode);

pNode.key=successorNode.key;

展开阅读全文
相关资源
猜你喜欢
相关搜索
资源标签

当前位置:首页 > 工程科技 > 能源化工

copyright@ 2008-2023 冰点文库 网站版权所有

经营许可证编号:鄂ICP备19020893号-2