Table of Contents
Problem Statement
Example
algorithm
Example: Using JavaScript
in conclusion
Home Web Front-end JS Tutorial JavaScript program for pairwise swapping of elements of a given linked list

JavaScript program for pairwise swapping of elements of a given linked list

Sep 06, 2023 pm 08:45 PM

用于成对交换给定链表元素的 JavaScript 程序

In this tutorial, we will learn a JavaScript program for pairwise swapping of elements of a given linked list. A common operation on linked lists is to swap adjacent elements in pairs. This operation is useful in various scenarios, such as reorganizing data, rearranging elements in a specific order, or optimizing certain algorithms. Additionally, we will focus on solving the problem of pairwise swapping of elements in a given linked list using JavaScript. We will provide a step-by-step approach to implementing the algorithm, explaining the logic and code behind it. By the end of this tutorial, you will have a clear understanding of how to implement a JavaScript program to swap elements in a linked list in pairs, along with sample code and instructions for each step.

Let’s dive into the solution to this problem in JavaScript!

Problem Statement

Given a linked list, the task is to implement a JavaScript program that exchanges elements in pairs. In other words, elements in consecutive positions in the linked list are exchanged with each other. If the number of elements in the linked list is odd, the last element remains unchanged. The program should return the modified head of the linked list.

Example

Example 1 -

Input: 1 -> 2 -> 3 -> 4 -> 5
Output: 2 -> 1 -> 4 -> 3 -> 5
Copy after login

Explanation- In the given linked list, the elements at position 1 and 2 (1 and 2 are 0 index) are exchanged and the result is 2 -> 1 -> 3 -> 4 -> 5. Then, swap the elements at positions 3 and 4, and the result is 2 -> 1 -> 4 -> 3 -> 5.

Example 2 -

Input: 10 -> 20 -> 30 -> 40 -> 50 -> 60 -> 70
Output: 20 -> 10 -> 40 -> 30 -> 60 -> 50 -> 70
Copy after login

Explanation In the given linked list, the elements at positions 1 and 2 are exchanged, and the result is 20 -> 10 -> 30 -> 40 -> 50 -> 60 -> 70. Then, the elements at positions 3 and 4 are swapped, and the result is 20 -> 10 -> 40 -> 30 -> 50 -> 60 -> 70. Finally, the elements at positions 5 and 6 are swapped, resulting in 20 -> 10 -> 40 -> 30 -> 60 -> 50 -> 70.

Now, let us understand the algorithm that implements this problem statement.

algorithm

  • Create a function named pairwiseSwap(head), which takes the head of the linked list as input.

  • Initialize a temporary variable temp to store the current node and set it to the head of the linked list.

  • Loop through the linked list with a step size of 2, that is, move two nodes at a time.

  • For each pair of nodes, exchange their values.

  • Move to the next pair of nodes.

  • Continue this process until the end of the linked list is reached or there are no more pairs to swap.

  • Return the modified linked list header.

So, after understanding the algorithm, let us implement it with the help of an example, in which we implement it with the help of JavaScript.

Example: Using JavaScript

The above program implements pairwise exchange of elements in a given linked list. It uses the Node class to represent the nodes of a linked list and uses the pairwiseSwap() function to swap the values ​​of adjacent nodes in pairs. The program first creates a linked list with a given set of elements, displays the original linked list, performs a pairwise swap using the pairwiseSwap() function, and then displays the updated linked list containing the swapped elements.

Input: Original linked list: 1 -> 2 -> 3 -> 4 -> 5 -> null

Expected output: Linked list after pairwise exchange: 2 -> 1 -> 4 -> 3 -> 5 -> null

class Node {
   constructor(value) {
      this.value = value;
      this.next = null;
   }
}
function pairwiseSwap(head) {
   let temp = head;
   while (temp !== null && temp.next !== null) {
      // Swap values of current and next nodes
      let tempVal = temp.value;
      temp.value = temp.next.value;
      temp.next.value = tempVal;
      // Move to the next pair of nodes
      temp = temp.next.next;
   }
   return head;
}

// Linked list with odd number of elements
let head = new Node(1);
let node2 = new Node(2);
let node3 = new Node(3);
let node4 = new Node(4);
let node5 = new Node(5);
head.next = node2;
node2.next = node3;
node3.next = node4;
node4.next = node5;
console.log("Original Linked List:");
let temp = head;
while (temp !== null) {
   process.stdout.write(temp.value + " -> ");
   temp = temp.next;
}
console.log("null");
head = pairwiseSwap(head);
console.log("Linked List after Pairwise Swapping:");
temp = head;
while (temp !== null) {
   process.stdout.write(temp.value + " -> ");
   temp = temp.next;
}
console.log("null");
Copy after login

in conclusion

To summarize, the JavaScript program provided in this tutorial demonstrates an efficient solution for pairwise exchange of elements in a given linked list. The algorithm iterates over a linked list, swapping adjacent elements in pairs, resulting in an updated linked list with swapped elements. This solution is useful in various scenarios where element exchange is required during linked list operations. By implementing this program, we can easily perform pairwise exchange of elements in a linked list using JavaScript.

The above is the detailed content of JavaScript program for pairwise swapping of elements of a given linked list. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins 8 Stunning jQuery Page Layout Plugins Mar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web Applications Build Your Own AJAX Web Applications Mar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 Mobile Cheat Sheets for Mobile Development 10 Mobile Cheat Sheets for Mobile Development Mar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source Viewer Improve Your jQuery Knowledge with the Source Viewer Mar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins 10 jQuery Fun and Games Plugins Mar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries? How do I create and publish my own JavaScript libraries? Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header Background jQuery Parallax Tutorial - Animated Header Background Mar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

See all articles