日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網為廣大站長提供免費收錄網站服務,提交前請做好本站友鏈:【 網站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

單向鏈表是一種線性數據結構,它以不連續的方式存儲在內存中,每個塊通過保存下一個塊的地址(也稱為節點)來連接。回文可以解釋為一組字符、數字等,并且從正面和背面讀起來都是一樣的。我們將得到一個單鏈表,并且必須從正面和背面查找節點存儲的值是否相等。

輸入

1 -> 2 -> 3 -> 3 -> 2 -> 1 -> null

登錄后復制

輸出

Yes, the given linked list is a palindrome. 

登錄后復制

說明

我們可以看到第一個和最后一個節點具有相同的值,第二個和倒數第二個節點具有相同的值,依此類推,與正面和背面距離相同的每個節點具有相同的值。

輸入

1 -> 2 -> 3 -> 4 -> 2 -> 1 -> null

登錄后復制

輸出

No, the given linked list is not a palindrome. 

登錄后復制

說明

這里,第一個和第二個節點分別等于最后一個和倒數第二個節點,但之后的節點不具有相同的值。

使用堆棧

在這種方法中,我們首先使用該類創建一個鏈表,然后定義一些基本函數以將數據添加到鏈表并打印鏈表中存在的數據。

示例

// class to create the structure of the nodes 
class Node{
   constructor(data){
      this.value = data;
      this.next = null;
   }
}

// function to print the linked list
function print(head){
   var temp = head;
   var ans = "";    
   while(temp.next != null){
      ans += temp.value;
      ans += " -> "
      temp = temp.next
   }
   ans += temp.value
   ans += " -> null"
   console.log(ans)
}

// function to add data in linked list 
function add(data, head, tail){
   return tail.next = new Node(data);
}

// function to find the string is palindrome or not
function check(head){
   var temp = head;
   var stack = []; // defining the stack    
   while(temp != null){
      stack.push(temp.value);
      temp = temp.next;
   }    
   temp = head;
   while(temp != null){
      if(temp.value != stack.pop()){
         return false;
      }
      temp = temp.next;
   }
   return true;
}

// defining linked list
var head  = new Node(1)
var tail  = head
tail = add(2,head, tail)
tail = add(3,head, tail)
tail = add(3,head, tail)
tail = add(2,head, tail)
tail = add(1,head, tail)
console.log("The given linked list is: ")
print(head)

// calling function to check if the current linked list is a palindrome or not 
if(check(head)){
   console.log("Yes, the given linked list is a palindrome");
}
else{
   console.log("No, the given linked list is not a palindrome");
}

登錄后復制

時間和空間復雜度

上述代碼的時間復雜度為 O(N),其中 N 是鏈表的長度。

上述代碼的空間復雜度為 O(N),因為我們使用堆棧數據結構來存儲其中的元素。

使用遞歸

在這個方法中,我們首先找到給定鏈表的長度,然后使用遞歸遍歷到鏈表的中間。如果給定鏈表的長度為奇數,我們將返回中間節點的下一個,否則返回中間節點,并且對于每次調用,我們將從遞歸調用中從后面獲取相應的節點。

示例

// class to create the structure of the nodes 
class Node{
   constructor(data){
      this.value = data;
      this.next = null;
   }
}

// function to print the linked list
function print(head){
   var temp = head;
   var ans = "";    
   while(temp.next != null){
      ans += temp.value;
      ans += " -> "
      temp = temp.next
   }
   ans += temp.value
   ans += " -> null"
   console.log(ans)
}

// function to add data in linked list 
function add(data, head, tail){
   return tail.next = new Node(data);
}

// recursive function 
function recursion(head, number, odd){
   if(number == 0){
      if(odd){
         return head.next;
      }
      else{
         return head;
      }
   }
   var temp = recursion(head.next, number-1, odd);
   
   // if the current value is not equal then don't move to the next node
   
   // by this we will not reach null in the end 
   
   // indicated the not palindrome 
   
   if(temp.value != head.value){
      return temp;
   }
   else{
      return temp.next;
   }
}

// function to check if the given linked list is palindrome or not 
function check(head){
   var temp = head;
   var len = 0;

   // finding the length of the given linked list 
   while(temp != null){
      len++;
      temp = temp.next;
   }

   // calling the recursion function 
   if(recursion(head, Math.floor(len/2), len & 1) == null){
      return true;
   }
   else{
      return false;
   }
}

// defining linked list
var head  = new Node(1)
var tail  = head
tail = add(2,head, tail)
tail = add(3,head, tail)
tail = add(4,head, tail)
tail = add(3,head, tail)
tail = add(2,head, tail)
tail = add(1,head, tail)
console.log("The given linked list is: ")
print(head)

// calling function to check if the current linked list is a palindrome or not 
if(check(head)){
   console.log("Yes, the given linked list is a palindrome");
}
else{
   console.log("No, the given linked list is not a palindrome");
}

登錄后復制

結論

在本教程中,我們實現了一個 JavaScript 程序來檢查給定的鏈表節點是否包含回文中的值。我們使用堆棧和遞歸實現了兩個代碼,堆棧的時間復雜度為 O(N),空間復雜度為 O(N),遞歸方法的空間復雜度為 O(1)(僅當遞歸調用數據為不考慮)。

以上就是JavaScript 程序檢查單鏈表是否是回文的詳細內容,更多請關注www.92cms.cn其它相關文章!

分享到:
標簽:javascript 回文 檢查 程序 鏈表
用戶無頭像

網友整理

注冊時間:

網站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網站吧!
最新入駐小程序

數獨大挑戰2018-06-03

數獨一種數學游戲,玩家需要根據9

答題星2018-06-03

您可以通過答題星輕松地創建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學四六

運動步數有氧達人2018-06-03

記錄運動步數,積累氧氣值。還可偷

每日養生app2018-06-03

每日養生,天天健康

體育訓練成績評定2018-06-03

通用課目體育訓練成績評定