在这个问题中,我们得到一个指向链表头部的指针和一个整数 k。在大小为 k 的组中,我们需要反转链表。例如 –
Input : 1 2 3 4 5 (doubly linked list), k = 3Output : 3 2 1 5 4
登录后复制
寻找解决方案的方法
在这个问题中,我们将制定一个递归算法来解决这个问题。在这种方法中,我们将使用递归并使用递归来解决问题。
示例
#include using namespace std;struct Node { int data; Node *next, *prev;};// push function to push a node into the listNode* push(Node* head, int data) { Node* new_node = new Node(); new_node->data = data; new_node->next = NULL; Node* TMP = head; if (head == NULL) { new_node->prev = NULL; head = new_node; return head; } while (TMP->next != NULL) { // going to the last node TMP = TMP->next; } TMP->next = new_node; new_node->prev = TMP; return head; // return pointer to head}// function to print given listvoid printDLL(Node* head) { while (head != NULL) { cout data next;}cout prev = NULL; Node *TMP, *CURRENT = head, *newHead; int count = 0; while (CURRENT != NULL && count prev; CURRENT->prev = CURRENT->next; CURRENT->next = TMP; CURRENT = CURRENT->prev; count++; } if (count >= k) { head->next = revK(CURRENT, k); // now when if the count is greater or equal //to k we connect first head to next head } return newHead;}int main() { Node* head; for (int i = 1; i输出
Original List : 1 2 3 4 5Modified List : 3 2 1 5 4登录后复制
上述代码的解释
在这种方法中,我们遍历列表并遍历直到计数小于 k。我们进行递归调用,将该值赋予 head -> next( 这里我们只是在遍历时反转列表,但是当达到 k 时,我们需要使 head 指向另一个列表的第 k 个元素,例如,如果我们的列表是 1 2 3 4 5,我们的 k 是 3,我们将中间元素反转为 3 2 1,但现在我们需要 1 指向 4,因为该元素也将被反转,所以这就是我们使用的原因递归调用并进行额外的 if 语句。)。
结论
在本文中,我们解决了使用 递归。我们还学习了这个问题的C++程序以及我们解决的完整方法。我们可以用其他语言比如C、java、python等语言来编写同样的程序。我们希望这篇文章对您有所帮助。
立即学习“C++免费学习笔记(深入)”;
以上就是使用C++按给定大小将双向链表分组反转的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2583934.html