Q23.cpp 288 B

123456789101112131415
  1. //
  2. // Created by 李洋 on 2023/8/12.
  3. //
  4. #include "../../dataStruct/LinkedList/lists.h"
  5. using namespace std;
  6. class Q23 {
  7. public:
  8. bool compare(const ListNode *a, const ListNode *b) {
  9. return a->val < b->val;
  10. }
  11. ListNode* mergeKLists(vector<ListNode*>& lists) {
  12. }
  13. };
备用站点 当前处于降级运行的备用站点,仅供应急访问,数据和功能可能不是最新。