码迷,mamicode.com
首页 > 编程语言 > 详细

《剑指offer》— JavaScript(3)从尾到头打印链表

时间:2017-06-27 22:18:57      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:dex   删除   --   his   知识   print   while   int   tno   

从尾到头打印链表

题目描述

  输入一个链表,从尾到头打印链表每个节点的值。


实现代码

/*function ListNode(x){
    this.val = x;
    this.next = null;
}*/
function printListFromTailToHead(head)
{
    var res=[];
    while(head){
        res.unshift(head.val);
        head=head.next;
    }
    return res;
}

相关知识

创建一个链表,并实现插入,删除,添加的方法

function  LinkedList(){
   var Node=function(val){
         this.val=val;
         this.next=null;
   }

   var length=0;
   var head=null;

   this.append=function(val){
      var node=new Node(val),
          current;
      if (head==null) {
          head=node;
      }else{
          current=head;

          while(current.next){
              current=current.next;
          }

          current.next=node;
      }

      length++;
   };

   this.removeAt=function(pos){
         if (pos>-1 && pos<length) {
        var current=head,
            previous,
            index=0;

        if (pos===0) {
           head=current.next;
        }else{
            while(index++<pos){
                previous=current;
                current=current.next;
            }
            length--;
            previous.next=current.next;
        }
         }else{
             return null;
         }
   };

   this.insertAt=function(pos,val){
           if (pos>=0 && pos <=length) {
               var node=new Node(),
                   current=head,
                   previous,
                   index=0;

            if (pos===0) {
                head=node;
            }else{
                while(index++<pos){
                    previous=current;
                    current=current.next;
                }
                node.next=current;
                previous.next=node;
            }
            length++;
            return true;
           }else{
               return null;
           }
   };

}

 

《剑指offer》— JavaScript(3)从尾到头打印链表

标签:dex   删除   --   his   知识   print   while   int   tno   

原文地址:http://www.cnblogs.com/t1amo/p/7087187.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!