- 博客(2)
- 收藏
- 关注
原创 【leetcode】Intersection of Two Linked Lists
判断链表是否相交,并求交点(不包括环的情况class Solution { public: ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) { if(headA==NULL||headB==NULL) return NULL; ListNode *p=headA;
2015-10-06 16:18:41 150
原创 单链表递归反转
单链表的递归反转class Solution { public: ListNode* reverseList(ListNode* head) { //递归反转链表 if(head==NULL||head->next==NULL) return head; ListNode *newHead=reverseList(head->next)
2015-10-06 16:06:03 246
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人