C++程序 对给定链表中元素进行成对交换

C++程序 对给定链表中元素进行成对交换

给出一个单链表,编写一个函数来成对交换元素。

输入: 1->2->3->4->5->6->NULL
输出: 2->1->4->3->6->5->NULL

输入: 1->2->3->4->5->NULL
输出: 2->1->4->3->5->NULL

输入: 1->NULL
输出: 1->NULL

例如,如果链表是1->2->3->4->5,则该函数应将其更改为2->1->4->3->5,并且如果链表是那么该函数应将其更改为。

方法(迭代):

从头节点开始遍历列表。 在遍历时,将每个节点的数据与其下一个节点的数据交换。

以下是上述方法的实现:

// C++ program to pairwise swap elements
// in a given linked list
#include <bits/stdc++.h>
using namespace std;
 
// A linked list node
class Node
{
    public:
    int data;
    Node* next;
};
 
/* Function to pairwise swap elements
   of a linked list */
void pairWiseSwap(Node* head)
{
    Node* temp = head;
 
    /* Traverse further only if there
       are at-least two nodes left */
    while (temp != NULL &&
           temp->next != NULL)
    {
        /* Swap data of node with
           its next node's data */
        swap(temp->data,
             temp->next->data);
 
        // Move temp by 2 for the next pair
        temp = temp->next->next;
    }
}
 
/* Function to add a node at the
   beginning of Linked List */
void push(Node** head_ref,
          int new_data)
{
    // Allocate node
    Node* new_node = new Node();
 
    // Put in the data
    new_node->data = new_data;
 
    // Link the old list off the
    // new node
    new_node->next = (*head_ref);
 
    /* Move the head to point
       to the new node */
    (*head_ref) = new_node;
}
 
/* Function to print nodes
   in a given linked list */
void printList(Node* node)
{
    while (node != NULL)
    {
        cout << node->data << " ";
        node = node->next;
    }
}
 
// Driver Code
int main()
{
    Node* start = NULL;
 
    /* The constructed linked list is:
       1->2->3->4->5 */
    push(&start, 5);
    push(&start, 4);
    push(&start, 3);
    push(&start, 2);
    push(&start, 1);
 
    cout << "Linked list " <<
            "before calling pairWiseSwap()";
    printList(start);
 
    pairWiseSwap(start);
 
    cout << "Linked list " <<
            "after calling pairWiseSwap()";
    printList(start);
 
    return 0;
}
// This code is contributed by rathbhupendra```  

输出:

在调用pairWiseSwap()之前的链表
1 2 3 4 5 
在调用pairWiseSwap()之后的链表
2 1 4 3 5 

时间复杂度:O(n)

辅助空间:O(1)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

C++ 示例