- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
class LinkedListVector{
public int crd;
public int length;
LinkedListVector head;
LinkedListVector next;
LinkedListVector prev;
LinkedListVector(){
this.head=this;
this.prev=this;
this.next=this;
this.length=0;
}
LinkedListVector(int val){
LinkedListVector save=this.head.prev;
this.prev=this.head.prev;
this.next=this.head;
this.next.prev=this;
save.next=this;
this.head.length++;
this.crd=val;
}
}
Эпичнейшая попытка реализовать двусвязный циклический список.
absolut 18.10.2010 12:40 # 0
Lure Of Chaos 18.10.2010 13:52 # 0
Мистер Хэнки 18.10.2010 14:46 # 0