这个题属于一个递归分治的思想(这是我觉得啊) /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* mergeNode(ListNode* node1, ListNode* node2) { //@1: if(node1 == NULL...