最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法示例

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:00:36
文檔

JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法示例

JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法示例:本文實(shí)例講述了JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法。分享給大家供大家參考,具體如下: function Node(data,left,right) { this.data = data; this.left = left; this.right = right; t
推薦度:
導(dǎo)讀JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法示例:本文實(shí)例講述了JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法。分享給大家供大家參考,具體如下: function Node(data,left,right) { this.data = data; this.left = left; this.right = right; t

本文實(shí)例講述了JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法。分享給大家供大家參考,具體如下:

function Node(data,left,right) {
 this.data = data;
 this.left = left;
 this.right = right;
 this.show = show;
}
function show() {
 return this.data;
}
function BST() {
 this.root = null;
 this.insert = insert;
 this.preOrder = preOrder;
 this.inOrder = inOrder;
 this.postOrder = postOrder;
 this.getMin = getMin;//查找最小值
 this.getMax = getMax;//查找最大值
 this.find = find;//查找給定值
}
function insert(data) {
 var n = new Node(data,null,null);
 if(this.root == null) {
 this.root = n;
 }else {
 var current = this.root;
 var parent;
 while(current) {
 parent = current;
 if(data < current.data) {
 current = current.left;
 if(current == null) {
 parent.left = n;
 break;
 }
 }else {
 current = current.right;
 if(current == null) {
 parent.right = n;
 break;
 }
 }
 }
 }
}
// 中序遍歷
function inOrder(node) {
 if(!(node == null)) {
 inOrder(node.left);
 console.log(node.show());
 inOrder(node.right);
 }
}
// 先序遍歷
function preOrder(node) {
 if(!(node == null)) {
 console.log(node.show());
 preOrder(node.left);
 preOrder(node.right);
 }
}
// 后序遍歷
function postOrder(node) {
 if(!(node == null)) {
 postOrder(node.left);
 postOrder(node.right);
 console.log("后序遍歷"+node.show());
 }
}
/*
*查找BST上的最小值
*因?yàn)檩^小的值總是在左子節(jié)點(diǎn)上,在BST上查找最小值,只需要遍歷左子樹,直到找到最后一個(gè)節(jié)點(diǎn)。*/
function getMin(){
 var current = this.root;
 while(!(current.left == null)) {
 current = current.left;
 }
// return current;//返回最小值所在的節(jié)點(diǎn)
 return current.data;//返回最小值
}
/*
 *查找BST上的最大值
 *因?yàn)檩^大的值總是在右子節(jié)點(diǎn)上,在BST上查找最大值,只需要遍歷右子樹,直到找到最后一個(gè)節(jié)點(diǎn)。*/
function getMax() {
 var current = this.root;
 while(!(current.right == null)) {
 current = current.right;
 }
// return current;//返回最大值所在的節(jié)點(diǎn)
 return current.data;//返回最大值
}
/*
*查找給定值
*在BST上查找給定值,需要比較該值和當(dāng)前節(jié)點(diǎn)上的值的大小。
*通過比較,就能確定如果給定值不在當(dāng)前節(jié)點(diǎn)時(shí),該向左遍歷還是向右遍歷。*/
function find(data) {
 var current = this.root;
 while(current != null) {
 if(current.data == data) {
 return current;
 }else if(data < current.data) {
 current = current.left;
 }else {
 current = current.right;
 }
 }
 return null;
}
var nums = new BST();
nums.insert(23);
nums.insert(45);
nums.insert(16);
nums.insert(37);
nums.insert(3);
nums.insert(99);
nums.insert(22);
var min = nums.getMin();
console.log("最小值為: " + min);
var max = nums.getMax();
console.log("最大值為: " + max);
var find = nums.find("88");
console.log( find);
if(find != null){
 console.log("給定值為: " + find.data);
 console.log("給定值為: " + find.show());
}
var find = nums.find("37");
console.log( find);
if(find != null){
 console.log("給定值為: " + find.data);
 console.log("給定值為: " + find.show());
}

運(yùn)行結(jié)果:

感興趣的朋友可以使用在線HTML/CSS/JavaScript代碼運(yùn)行工具:http://tools.jb51.net/code/HtmlJsRun測(cè)試上述代碼運(yùn)行效果。

更多關(guān)于JavaScript相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《JavaScript數(shù)學(xué)運(yùn)算用法總結(jié)》、《JavaScript數(shù)據(jù)結(jié)構(gòu)與算法技巧總結(jié)》、《JavaScript數(shù)組操作技巧總結(jié)》、《JavaScript排序算法總結(jié)》、《JavaScript遍歷算法與技巧總結(jié)》、《JavaScript查找算法技巧總結(jié)》及《JavaScript錯(cuò)誤與調(diào)試技巧總結(jié)》

希望本文所述對(duì)大家JavaScript程序設(shè)計(jì)有所幫助。

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法示例

JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法示例:本文實(shí)例講述了JavaScript數(shù)據(jù)結(jié)構(gòu)與算法之二叉樹實(shí)現(xiàn)查找最小值、最大值、給定值算法。分享給大家供大家參考,具體如下: function Node(data,left,right) { this.data = data; this.left = left; this.right = right; t
推薦度:
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top