摘要: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ... 阅读全文
posted @ 2015-04-01 19:40 jasmine_turnsoul 阅读(133) 评论(0) 推荐(0)
摘要: Given a list, rotate the list to the right bykplaces, wherekis non-negative.For example:Given1->2->3->4->5->NULLandk=2,return4->5->1->2->3->NULL.思路:任何... 阅读全文
posted @ 2015-04-01 19:38 jasmine_turnsoul 阅读(145) 评论(0) 推荐(0)