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

首頁 > 語言 > JavaScript > 正文

js鏈表操作(實例講解)

2024-05-06 15:12:13
字體:
供稿:網(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é)點(diǎn)的前一個節(jié)點(diǎn)      for(i=0;i<ii;i++){        if(node1.next!=null){          node1=node1.next;        }else{          break;        }      }      node2=node1.next;  //要刪除的節(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鏈表操作(實例講解)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持錯新站長站。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 临潭县| 平罗县| 基隆市| 朔州市| 高雄市| 辉南县| 星座| 汉寿县| 咸宁市| 靖边县| 格尔木市| 宁国市| 南京市| 万荣县| 本溪| 武义县| 隆化县| 麟游县| 咸丰县| 老河口市| 澎湖县| 临漳县| 博兴县| 秀山| 杭锦后旗| 东安县| 松溪县| 邵阳县| 阿拉尔市| 冀州市| 和平区| 太保市| 嘉峪关市| 涟源市| 交城县| 怀集县| 沅江市| 类乌齐县| 威远县| 尖扎县| 宜宾县|