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.思路:将单... Read More
posted @ 2014-10-26 21:04 chengcy Views(101) Comments(0) Diggs(0)