题解 | #链表的奇偶重排#
链表的奇偶重排
http://www.nowcoder.com/practice/02bf49ea45cd486daa031614f9bd6fc3
拆分链表中的结点,把序号为奇数的结点放在数组odd中,把序号为偶数的结点放在数组even中,然后分别遍历两个数组,将接连链接在新的头结点上。
/**
* struct ListNode {
* int val;
* struct ListNode *next;
* ListNode(int x) : val(x), next(nullptr) {}
* };
*/
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param head ListNode类
* @return ListNode类
*/
ListNode* oddEvenList(ListNode* head) {
vector<ListNode*> odd{};
vector<ListNode*> even{};
int flag=1;
while(head!=nullptr){
ListNode* temp=head;
head=head->next;
temp->next=nullptr;
if(flag%2==1) odd.push_back(temp);
else even.push_back(temp);
flag++;
}
ListNode* dummy_head=new ListNode{-1};
ListNode* cur=dummy_head;
for(int i=0;i<odd.size();i++){
cur->next=odd[i];
cur=cur->next;
}
for(int i=0;i<even.size();i++){
cur->next=even[i];
cur=cur->next;
}
return dummy_head->next;
}
};