国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > JS > 正文

js鏈表操作(實(shí)例講解)

2024-05-06 16:39:18
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

如下所示:

<!doctype html><html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script>  function Node(v){    this.value=v;    this.next=null;  }  function ArrayList(){    this.head=new Node(null);    this.tail = this.head;    this.append=function(v){      node = new Node(v);      this.tail.next=node;      this.tail=node;    }    this.insertAt=function(ii,v){      node = new Node(v);      //找到位置的節(jié)點(diǎn)      tempNode=this.head;      for(i=0;i<ii;i++){        if(tempNode.next!=null){          tempNode=tempNode.next;        }else{          break;        }      }      node.next=tempNode.next;      tempNode.next = node;    }    this.removeAt=function(ii){      node1=this.head; //要?jiǎng)h除節(jié)點(diǎn)的前一個(gè)節(jié)點(diǎn)      for(i=0;i<ii;i++){        if(node1.next!=null){          node1=node1.next;        }else{          break;        }      }      node2=node1.next;  //要?jiǎng)h除的節(jié)點(diǎn)      if(node2!=null){        node1.next = node2.next;        if(node2.next==null){          this.tail=node1;        }      }    }      }  function Iterator(arryList){    this.point=arryList.head;    this.hasNext=function(){      if(this.point.next!=null){        this.point=this.point.next;        return true;      }else{        return false;      }    }    this.next=function(){      return this.point.value;    }  }    var arry = new ArrayList();  arry.append(1);  arry.append(2);  arry.append(3);  arry.insertAt(1,8);  arry.insertAt(0,9);  arry.insertAt(100,100);  arry.insertAt(1000,1000);  arry.insertAt(1,200);  arry.insertAt(200,2000);    iterator = new Iterator(arry);  while(iterator.hasNext()){    document.write(iterator.next());    document.write('<br/>');  } </script> </head> <body>  </body></html>

以上這篇js鏈表操作(實(shí)例講解)就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持VeVb武林網(wǎng)。


注:相關(guān)教程知識(shí)閱讀請(qǐng)移步到JavaScript/Ajax教程頻道。
發(fā)表評(píng)論 共有條評(píng)論
用戶(hù)名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 泰来县| 恭城| 汝州市| 常山县| 嘉祥县| 宁武县| 额尔古纳市| 甘谷县| 九台市| 玉龙| 孟连| 临澧县| 永昌县| 乐东| 陇南市| 莱州市| 娄烦县| 车致| 濮阳县| 通许县| 甘洛县| 新闻| 丽水市| 赞皇县| 抚州市| 济宁市| 滨州市| 惠东县| 普陀区| 贵阳市| 秀山| 普定县| 台北市| 赤水市| 宿州市| 桐乡市| 周宁县| 桂林市| 石阡县| 德令哈市| 确山县|