zoukankan      html  css  js  c++  java
  • 【leetcode】【单链表】【61】Merge k Sorted Lists

    #include<iostream>
    using namespace std;
    
    struct ListNode {
    	int val;
    	ListNode *next;
    	ListNode(int x) : val(x), next(NULL) {}
    };
    
    class Solution {
    public:
    	ListNode* rotateRight(ListNode* head, int k) {
    		if (head == NULL||head->next == NULL)
    			return head;
    
    		int numOfNodes=0;
    		ListNode* cur = head;
    		ListNode* last = head;
    		while (cur){//找出链表长度
    			++numOfNodes;
    			last = cur;
    			cur = cur->next;
    		}
    		k = k%numOfNodes;
    		if (k == 0) //注意,开始没有考虑到,要右旋转长度为0
    			return head;
    
    		ListNode* preCur = head;
    		cur = head;
    		k = numOfNodes - k;
    		while (k--){
    			preCur = cur;
    			cur = cur->next;
    		}
    		preCur->next = NULL;
    		last->next = head;
    		head = cur;
    		return head;
    	}
    	ListNode* createList(ListNode* head){
    		int numOfNode;
    		int value;
    		cout << "please input number of listNode:";
    		cin >> numOfNode;
    		cin >> value;
    		head = new ListNode(value);
    		ListNode* cur = head;
    		for (int i = 1; i < numOfNode; ++i){
    			cin >> value;
    			ListNode* temp = new ListNode(value);
    			cur->next = temp;
    			cur = temp;
    		}
    		return head;
    	}
    	void printNode(ListNode* head){
    		ListNode* cur = head;
    		while (cur){
    			cout << cur->val << " ";
    			cur = cur->next;
    		}
    		cout << endl;
    	}
    };
    
    int main(){
    	ListNode* head = NULL;
    	Solution lst;
    	head = lst.createList(head);
    	lst.printNode(head);
    
    	head = lst.rotateRight(head, 0);
    	lst.printNode(head);
    
    	system("pause");
    	return 0;
    }

  • 相关阅读:
    使用Python Falsk-Mail 发送邮件
    Python反射
    Python类的特殊成员方法
    Python静态方法、类方法、属性方法
    Python面向对象三大特性(封装、继承、多态)
    Python之面向对象
    Python标准库之re模块
    Python标准库之logging模块
    Python标准库之subprocess模块
    Python标准库之hashlib模块与hmac模块
  • 原文地址:https://www.cnblogs.com/ruan875417/p/4558308.html
Copyright © 2011-2022 走看看