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

链表逆序(JavaScript版)

时间:2020-02-14 10:52:18      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:lin   return   pre   asc   col   next   span   sel   lis   

 1 function reverseLinkedList(head) {
 2 
3
if (head === null || head.next === null) { 4 return head; 5 } 6 let newHead = null
7
while (head) { 8 let next = head.next 9 head.next = newHead 10 newHead = head 11 head = next 12 } 13 return newHead 14 }

 

链表逆序(JavaScript版)

标签:lin   return   pre   asc   col   next   span   sel   lis   

原文地址:https://www.cnblogs.com/flamestudio/p/12306290.html

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