zoukankan      html  css  js  c++  java
  • JavaScript LinkedList

    function LinkedList() {
    var Node = function(element) {
    this.element = element;
    this.next = null
    }
    var length = 0;
    var head = null;
    this.append = function(element) {
    var node = new Node(element),
    current;
    if (head == null) {
    head = node
    } else {
    current = head;
    while (current.next) {
    current = current.next
    }
    current.next = node
    }
    length++
    }
    this.insert = function(position, element) {
    if (position >= 0 && position <= length) {
    var node = new Node(element),
    current = head,
    previous,
    index = 0;
    if (position == 0) {
    node.next = current;
    head = node
    } else {
    while (index++<position) {
    previous = current;
    current = current.next
    }
    node.next = current;
    previous.next = node
    }
    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
    } else {
    while (index++<position) {
    previous = current;
    current = current.next
    }
    previous.next = current.next
    }
    length--;
    return current.element
    } else {
    return null
    }
    }
    this.remove = function(element) {
    var index = this.indexOf(element);
    return this.removeAt(index)
    }
    this.indexOf = function(element) {
    var current = head,
    index = -1;
    while (current) {
    if (element == current.element) {
    return index
    }
    index++;
    current = current.next
    }
    return - 1
    }
    this.isEmpty = function() {
    return length == 0
    }
    this.size = function() {
    return length
    }
    this.getHead = function() {
    return head
    }
    this.toString = function() {
    var current = head,
    string = '';
    while (current.next) {
    string = current.element;
    current = current.next
    }
    return string
    }
    this.print = function() {}
    }
    var linkedList = new LinkedList();
    linkedList.append("shidengyun");
    linkedList.insert(0, 'zhujing');
    console.log(linkedList.toString());
  • 相关阅读:
    cp备份操作时如何忽略指定的目录
    Wordpress“固定链接”页面出现404原因及解决方法
    CentOS7上搭建WEB服务器
    坑爹的云服务安全组
    java spring hibernate
    电脑性能
    android subclipse subversive
    android 开发 程序中下载安装APK文件 问题汇总 解析程序包时出现问题
    android sqlite datetime demo
    android SurfaceView中播放视频 按视频的原始比例播放
  • 原文地址:https://www.cnblogs.com/shidengyun/p/5126130.html
Copyright © 2011-2022 走看看