js-实现双向链表

双向链表也叫双链表,是链表的一种,它的每个数据结点中都有两个指针,分别指向直接后继和直接前驱。

js代码如下:

function DoublyLinkedList() {
	var Node = function (element) {
		this.element = element;
		this.next = null;
		this.prev = null;
	};
	var length = 0;
	var head = 0;
	var tail = null;
	this.insert = function (position, element) {
		if (position >= 0 && position <= length) {
			var node = new Node(element),
				current = head,
				previous,
				index = 0;
			if (position === 0) {
				if (!head) {
					head = node;
					tail = node;
				} else {
					node.next = current;
					current.prev = node;
					head = node;
				}
			}
			else if (position === length) {
				current = tail;
				current.next = node;
				node.prev = current;
				tail = node;
			} else {
				while (index++ < position) {
					previous = current;
					current = current.next;
				}
				node.next = current;
				previous.next = node;
				current.prev = node;
				node.prev = previous;

			}
			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;
				if (length == 1) {
					tail = null;
				} else {
					head.prev = null;
				}
			} else if (position === length - 1) {
				current = tail;
				tail = current.prev;
				tail.next = null;
			} else {
				while (index++ < position) {
					previous = current;
					current = current.next;
				}
				previous.next = current.next;
				current.next.prev = previous;
			}
			length--;
			return current.element;
		} else {
			return null;
		}
	};
	this.toString = function () {//输出链表中的值
		var current = head,
			string = '';
		while (current) {
			string += current.element + " ";
			current = current.next;
		}
		return string;
	};
	this.getHead=function(){
		return head;
	}
}
var list=new DoublyLinkedList();
list.insert(0,12);
list.insert(1,23);
list.insert(2,54);
list.insert(3,23);
list.insert(4,2);
console.log(list.toString());
console.log(list.getHead().next);


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值