//Definition for singly-linked list. #include #include #include struct ListNode { int val; struct ListNode *next; }; void addNode(struct ListNode **head, struct ListNode **p, int val) { ... Read More
posted @ 2016-08-28 13:43 你好阿汤哥 Views(176) Comments(0) Diggs(0) Edit