字节跳动面试题推荐
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int v):val(v), next(nullptr) {}
};
class Solution {
public:
ListNode* reverseBetween(ListNode* head, int left, int right) {
ListNode *dummy = new ListNode(-1);
ListNode *pre= dummy;
dummy->next= head;
ListNode *p = head;
// 由于下标是0开始的,所以,lfet-1
for(int i=0;i<left-1;i++) {
pre= pre->next;
p = p->next;
}
// p指向的是第一个要翻转的节点
for(int j=0;j<right-left;j++) {
ListNode *temp= p->next;
// 防止出现断链的情况。
p->next = temp->next;
temp->next = pre->next;
pre->next = temp;
}
return dummy->next;
}
};
int main(int argc, char* argv[]) {
ListNode *head = new ListNode(1);
ListNode *h2 = new ListNode(2);
ListNode *h3 = new ListNode(3);
ListNode *h4 = new ListNode(4);
ListNode *h5 = new ListNode(5);
ListNode *h6 = new ListNode(6);
head->next = h2;
h2->next = h3;
h3->next = h4;
h4->next = h5;
h5->next = h6;
h6->next = nullptr;
int left = 2;
int right =4;
ListNode *res;
Solution s;
res = s.reverseBetween(head, left, right);
while(res!=nullptr) {
cout<<res->val<<" ";
res= res->next;
}
return 0;
}
本文解析了如何使用C++实现一个名为Solution的类,用于解决在链表中从指定位置进行反转的问题。通过ListNode结构和reverseBetween函数,展示了如何在给定头节点、起始和结束下标后进行链表部分反转的操作。
1439

被折叠的 条评论
为什么被折叠?



