用javascript實現的有序鏈表

來源:互聯網
上載者:User
javascript

用javascript模仿java實現的有序鏈表,實現按對象的某個屬性對對象進行排序。

<script>


function Link1(){}
Link1.prototype.obj=null;
Link1.prototype.next1=new Link1();
function Link1.prototype.Link1(object){
 obj=object;
}


function SortedList(){}
SortedList.prototype.first=new Link1();
function SortedList.prototype.SortedList(linkArr,nm){
 var sortedList=new SortedList();
 sortedList.first=null;
 for(j=0;j<linkArr.length;j++){
 
  sortedList.insert(linkArr[j],nm);
 }
}
  var f=new SortedList();
function SortedList.prototype.insert(lnk,nm){
 
  var previous1=null;
  var current1=f.first;

  while(current1.obj!=null&&lnk.obj[nm]>current1.obj[nm]){
    previous1=current1;
    current1=current1.next1;
 
 }
  if(previous1==null){
   f.first=lnk;
  }else{
   privious1=new Link1();
   previous1.next1=lnk;
  }
  lnk.next1=current1;
}
function SortedList.prototype.remove(lnk){
 var temp=new Link1();
 temp=f.first;
 f.first=f.first.next1;
 return temp;
}
function ObjTemp(){}
ObjTemp.prototype.num=0;
ObjTemp.prototype.s="";
var objArr=new Array();
objArr[0]=new Link1();
objArr[0].obj=new ObjTemp();
objArr[0].obj.num=1;
objArr[0].obj.s="第一個";
objArr[1]=new Link1();
objArr[1].obj=new ObjTemp();
objArr[1].obj.num=10;
objArr[1].obj.s="第二個";
objArr[2]=new Link1();
objArr[2].obj=new ObjTemp();
objArr[2].obj.num=9;
objArr[2].obj.s="第三個";

objArr[3]=new Link1();
objArr[3].obj=new ObjTemp();
objArr[3].obj.num=19;
objArr[3].obj.s="第四個";
var slist=new SortedList();
slist.SortedList(objArr,"num");
var psh=new Array();
for(i=0;i<4;i++){
 psh[i]=slist.remove();
 alert(psh[i].obj.num+psh[i].obj.s+"---PSH");
}


</script>




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.