劍指offer(3)從尾到頭打印鏈表


題目描述

輸入一個鏈表,從尾到頭打印鏈表每個節點的值。

題目分析

比較簡單,主要注意下從尾到頭,可以用棧可以用遞歸,我給出我比較喜歡的代碼吧

代碼

/* function ListNode(x){
 this.val = x;
 this.next = null;
 }*/
function printListFromTailToHead(head) {
  // write code here
  const res = [];
  let pNode = head;
  while (pNode !== null) {
    res.unshift(pNode.val);
    pNode = pNode.next;
  }
  return res;
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM