mirror of
				https://git.wolves.top/wolves/leetcode.git
				synced 2025-11-04 17:26:32 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
//
 | 
						|
// Created by 李洋 on 2023/8/12.
 | 
						|
//
 | 
						|
#include "../../dataStruct/LinkedList/lists.h"
 | 
						|
 | 
						|
using namespace std;
 | 
						|
class Q23 {
 | 
						|
public:
 | 
						|
    bool compare(const ListNode *a, const ListNode *b) {
 | 
						|
        return a->val < b->val;
 | 
						|
    }
 | 
						|
 | 
						|
    ListNode* mergeKLists(vector<ListNode*>& lists) {
 | 
						|
    }
 | 
						|
}; |