摘要: $ git push -u origin master -f(加一个-f就可以) 阅读全文
posted @ 2018-02-26 14:53 followyounger 阅读(604) 评论(0) 推荐(0) 编辑
摘要: You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai 阅读全文
posted @ 2018-01-12 22:00 followyounger 阅读(96) 评论(0) 推荐(0) 编辑
摘要: You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you nee 阅读全文
posted @ 2018-01-12 13:54 followyounger 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 将级数位的排在前面,偶数位的排到后面,。 利用两个指针,可以完成这个。 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val( 阅读全文
posted @ 2018-01-07 20:01 followyounger 阅读(692) 评论(0) 推荐(0) 编辑