https://leetcode-cn.com/problems/merge-two-sorted-lists/ struct ListNode【singly-linked list】 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNode(int x) : val(x), next(nullptr) {} * Lis...