- //
- // 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) {
- }
- };
|