它和 concat 的区别在于,不用等到 发射器 A 发送完所有的事件再进行发射器 B 的发送
class Solution {public: ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) { if (!l1) return l2; if (!l2) return l1; if (l1->val <...
struct cmp { bool operator () (ListNode *a, ListNode *b) { return a->val > b->val; }}; class Solution { public: ListNode *mergeKLists...