c_cpp 成对交换给定链表的元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 成对交换给定链表的元素相关的知识,希望对你有一定的参考价值。
// https://www.geeksforgeeks.org/pairwise-swap-elements-of-a-given-linked-list/
#include <bits/stdc++.h>
using namespace std;
struct linked_list {
int data;
struct linked_list* next;
};
typedef struct linked_list node;
void print (node* n) {
while (n != NULL) {
cout<< n->data<< "->";
n = n->next;
}
}
node* insert(node* head, int n) {
node* temp = (node*)malloc(sizeof(node*));
temp->data = n;
temp->next = head;
head = temp;
return head;
}
void swappair (node* head) {
if (head != NULL && head->next != NULL) {
int n=head->data;
head->data=head->next->data;
head->next->data=n;
swappair(head->next->next);
}
}
int main() {
int n,x,y;
node* head = NULL;
while (true) {
cout<< "Enter the elements, and -999 to stop: ";
cin>>n;
if (n==-9)
break;
else
head=insert(head,n);
}
print(head);
swappair(head);
cout<< "\n";
print(head);
}
以上是关于c_cpp 成对交换给定链表的元素的主要内容,如果未能解决你的问题,请参考以下文章
24.成对的交换节点(24.Swap Nodes in Pairs)
c_cpp 找到给定链表的中间位置
LeetCode成对交换节点
c_cpp 给定一个已排序的链表,删除所有重复项,使每个元素只出现一次。
c_cpp 在(a)未对它们进行排序时,查找两个链表的公共元素(b)对它们进行排序
c_cpp 如果用有序链表来表示一个含有Ñ个元素的有序集S,则在最坏情况下,搜索小号中一个元素需要O(n)的计算时间。提高有序链表效率的一个技巧是在有序链表的部分结点处增设附加指针以提高其搜