最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

JavaScript數(shù)據(jù)結(jié)構(gòu)之單鏈表和循環(huán)鏈表

 更新時(shí)間:2017年11月28日 11:44:39   作者:貳拾肆樵  
這篇文章主要介紹了JavaScript數(shù)據(jù)結(jié)構(gòu)之單鏈表、循環(huán)鏈表,詳細(xì)的介紹了JavaScript如何實(shí)現(xiàn)單鏈表、循環(huán)鏈表,有興趣的可以了解一下

數(shù)據(jù)結(jié)構(gòu)系列前言:

數(shù)據(jù)結(jié)構(gòu)作為程序員的基本知識(shí),需要我們每個(gè)人牢牢掌握。近期我也展開(kāi)了對(duì)數(shù)據(jù)結(jié)構(gòu)的二次學(xué)習(xí),來(lái)彌補(bǔ)當(dāng)年挖的坑。。。。。。   當(dāng)時(shí)上課的時(shí)候也就是跟著聽(tīng)課,沒(méi)有親自實(shí)現(xiàn)任何一種數(shù)據(jù)結(jié)構(gòu),更別提利用數(shù)據(jù)結(jié)構(gòu)來(lái)解決問(wèn)題了。  現(xiàn)在就來(lái)填坑了奮斗   在這里提醒看到我博客的孩子們,如果你還是在校生,永遠(yuǎn)不要輕視任何一門(mén)基礎(chǔ)課的學(xué)習(xí),這個(gè)時(shí)候挖的坑,要么需要用雙倍的努力去填,要么會(huì)直接影響一個(gè)人的能力等等。。。。。。 千萬(wàn)別給自己挖坑

進(jìn)入正題,關(guān)于鏈表的數(shù)據(jù)結(jié)構(gòu)知識(shí),這里簡(jiǎn)單介紹下:

鏈表是一種物理存儲(chǔ)單元上非線性、非連續(xù)性的數(shù)據(jù)結(jié)構(gòu)(它在數(shù)據(jù)邏輯上是線性的),它的每個(gè)節(jié)點(diǎn)由兩個(gè)域組成:數(shù)據(jù)域和指針域。數(shù)據(jù)域中存儲(chǔ)實(shí)際數(shù)據(jù),指針域則存儲(chǔ)著指針信息,指向鏈表中的下一個(gè)元素或者上一個(gè)元素。正是由于指針的存在,鏈表的存儲(chǔ)在物理單元是非連續(xù)性的。

鏈表的優(yōu)點(diǎn)和缺點(diǎn)同樣明顯。和線性表相比,鏈表在添加和刪除節(jié)點(diǎn)上的效率更高,因?yàn)槠渲恍枰薷闹羔樞畔⒓纯赏瓿刹僮?,而不像線性表(數(shù)組)那樣需要移動(dòng)元素。同樣的,鏈表的長(zhǎng)度在理論上也是無(wú)限的(在存儲(chǔ)器容量范圍內(nèi)),并可以動(dòng)態(tài)變化長(zhǎng)度,相比線性表優(yōu)勢(shì)很大。 相應(yīng)的,由于線性表無(wú)法隨機(jī)訪問(wèn)節(jié)點(diǎn),只能通過(guò)指針順著鏈表進(jìn)行遍歷查詢來(lái)訪問(wèn),故其訪問(wèn)數(shù)據(jù)元素的效率比較低。 

下面是JS部分

這里面封裝了的常用方法及描述:

方法 描述
append(element)   向鏈表尾部添加結(jié)點(diǎn)element
insert(position,element)  向位置position處插入結(jié)點(diǎn)element
removeAt(position)  按照索引值position刪除結(jié)點(diǎn)
remove(element)  搜索并刪除給定結(jié)點(diǎn)element
remove()  刪除鏈表中最后一個(gè)結(jié)點(diǎn)
indexOf(element) 查找并返回給定結(jié)點(diǎn)element的索引值
isEmpty()  判斷鏈表是否為空
size()  獲取鏈表長(zhǎng)度
toString()  轉(zhuǎn)換為字符串輸出
getHead() 獲取頭結(jié)點(diǎn)
getTail()  獲取尾結(jié)點(diǎn)

對(duì)于各常用方法的算法描述在這里就不寫(xiě)了,相信大家都可以輕易讀懂并理解,畢竟都是非常基礎(chǔ)的知識(shí)了。

單鏈表:

function LinkedList(){ 
 /*節(jié)點(diǎn)定義*/ 
 var Node = function(element){ 
  this.element = element; //存放節(jié)點(diǎn)內(nèi)容 
  this.next = null; //指針 
 } 
 
 var length = 0, //存放鏈表長(zhǎng)度 
  head = null; //頭指針 
 
 this.append = function(element){ 
  var node = new Node(element), 
   current; //操作所用指針 
 
  if (!head){ 
   head = node; 
  }else { 
   current = head; 
 
   while(current.next){ 
    current = current.next; 
   } 
 
   current.next = node; 
  } 
 
  length++; 
  return true; 
 }; 
 
 this.insert = function(position, element){ 
  if (position >= 0 && position <= length) { 
   var node = new Node(element), 
    current = head, 
    previous, 
    index = 0; 
 
   if(position === 0){ 
    node.next = current; 
    head = node; 
   }else{ 
    while(index++ < position){ 
     previous = current; 
     current = current.next; 
    } 
    node.next = current; 
    previous.next = node; 
   } 
 
   length++; 
   return true; 
  }else{ 
   return false; 
  } 
  }; 
 
 this.removeAt = function(position){ 
  if(position > -1 && position < length){ 
   var current = head, 
    previous, 
    index = 0; 
 
   if (position === 0) { 
 
    head = current.next; 
 
   }else{ 
 
    while (index++ < position){ 
     previous = current; 
     current = current.next; 
    } 
 
    previous.next = current.next; 
   }; 
 
   length--; 
   return current.element; 
  }else{ 
   return null; 
  } 
 }; 
 
 this.remove = function(element){ 
  var current = head, 
   previous; 
 
  if(element === current.element){ 
   head = current.next; 
   length--; 
   return true; 
  } 
  previous = current; 
  current = current.next; 
 
  while(current){ 
   if(element === current.element){ 
    previous.next = current.next; 
    length--; 
    return true; 
   }else{ 
    previous = current; 
    current = current.next; 
   } 
  } 
  return false; 
 }; 
 
 this.remove = function(){ 
  if(length < 1){ 
   return false; 
  } 
 
  var current = head, 
  previous; 
 
  if(length == 1){ 
   head = null; 
   length--; 
   return current.element; 
  } 
 
  
  while(current.next !== null){ 
   previous = current; 
   current = current.next; 
  } 
 
  previous.next = null; 
  length--; 
  return current.element; 
 }; 
 
 this.indexOf = function(element){ 
  var current = head, 
   index = 0; 
 
  while(current){ 
   if(element === current.element){ 
    return index; 
   } 
   index++; 
   current = current.next; 
  } 
 
  return false; 
 }; 
 
 this.isEmpty = function(){ 
  return length === 0; 
 }; 
 
 this.size = function(){ 
  return length; 
 }; 
 
 this.toString = function(){ 
  var current = head, 
   string = ''; 
 
  while(current){ 
   string += current.element; 
   current = current.next; 
  } 
  return string; 
 };  
 
 this.getHead = function(){ 
  return head; 
 } 
  
} 

循環(huán)鏈表:在單鏈表的基礎(chǔ)上,將尾節(jié)點(diǎn)的指針指向頭結(jié)點(diǎn),就構(gòu)成了一個(gè)循環(huán)鏈表。環(huán)形鏈表從任意一個(gè)節(jié)點(diǎn)開(kāi)始,都可以遍歷整個(gè)鏈表。

function CircularLinkedList(){ 
 var Node = function(element){ 
  this.element = element; 
  this.next = null; 
 } 
 
 var length = 0, 
  head = null; 
 
 this.append = function(element){ 
  var node = new Node(element), 
   current; 
 
  if (!head) { 
   head = node; 
   node.next = head; 
  }else{ 
   current = head; 
 
   while(current.next !== head){ 
    current = current.next; 
   } 
 
   current.next = node; 
   node.next = head; 
  }; 
 
  length++; 
  return true; 
 }; 
 
 this.insert = function(position, element){ 
  if(position > -1 && position < length){ 
   var node = new Node(element), 
    index = 0, 
    current = head, 
    previous; 
 
 
   if (position === 0) { 
 
    node.next = head; 
    head = node; 
 
   }else{ 
 
    while(index++ < position){ 
     previous = current; 
     current = current.next; 
    } 
 
    previous.next = node; 
    node.next = current; 
 
   }; 
 
   length++; 
   return true; 
  }else{ 
   return false; 
  } 
 }; 
 
 this.removeAt = function(position){ 
  if(position > -1 && position < length){ 
   var current = head, 
    previous, 
    index = 0; 
 
   if (position === 0) { 
 
    head = current.next; 
 
   }else{ 
 
    while (index++ < position){ 
     previous = current; 
     current = current.next; 
    } 
 
    previous.next = current.next; 
   }; 
 
   length--; 
   return current.element; 
  }else{ 
   return null; 
  } 
 }; 
 
 this.remove = function (element){ 
  var current = head, 
   previous, 
   indexCheck = 0; 
 
  while(current && indexCheck < length){ 
   if(current.element === element){ 
    if(indexCheck == 0){ 
     head = current.next; 
     length--; 
     return true; 
    }else{ 
     previous.next = current.next; 
     length--; 
     return true; 
    } 
   }else{ 
    previous = current; 
    current = current.next; 
    indexCheck++; 
   } 
  } 
  return false; 
 }; 
 
 this.remove = function(){ 
  if(length === 0){ 
   return false; 
  } 
 
  var current = head, 
   previous, 
   indexCheck = 0; 
 
  if(length === 1){ 
   head = null; 
   length--; 
   return current.element; 
  } 
 
  while(indexCheck++ < length){ 
   previous = current; 
   current = current.next; 
  } 
  previous.next = head; 
  length--; 
  return current.element; 
 }; 
 
 this.indexOf = function(element){ 
  var current = head, 
   index = 0; 
 
  while(current && index < length){ 
   if(current.element === element){ 
    return index; 
   }else{ 
    index++; 
    current = current.next; 
   } 
  } 
  return false; 
 }; 
 
 
 this.isEmpty = function(){ 
  return length === 0; 
 }; 
 
 this.size = function(){ 
  return length; 
 }; 
 
 this.toString = function(){ 
  var current = head, 
   string = '', 
   indexCheck = 0; 
 
  while(current && indexCheck < length){ 
   string += current.element; 
   current = current.next; 
   indexCheck++; 
  } 
 
  return string; 
 };  
 
} 

使用方法:

在類外部擴(kuò)充方法:

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

云阳县| 宕昌县| 河源市| 邢台县| 祥云县| 馆陶县| 富阳市| 铁力市| 都安| 淅川县| 临高县| 保亭| 大关县| 旺苍县| 安义县| 芮城县| 梁河县| 东山县| 灌云县| 塔河县| 额济纳旗| 新闻| 鸡西市| 盐边县| 茌平县| 庆云县| 施甸县| 丹巴县| 吉水县| 酒泉市| 益阳市| 东海县| 涟源市| 邵武市| 始兴县| 安宁市| 盱眙县| 溆浦县| 洛隆县| 奉新县| 临安市|