链表的建立,合并

/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ #include <cstdlib> #include <iostream> us
相关文章
相关标签/搜索