Given a list, rotate the list to the right by k places, where k is non-negative.
For example:
Given 1->2->3->4->5->NULL and k = 2,
return 4->5->1->2->3->NULL.
这道题是要求将单链表循环右移k次,每次...
分类:
其他好文 时间:
2015-03-20 23:53:07
阅读次数:
287
https://leetcode.com/problems/trapping-rain-water/Givennnon-negative integers representing an elevation map where the width of each bar is 1, compute ...
分类:
移动开发 时间:
2015-03-20 23:31:14
阅读次数:
204
题目:rotate list
解法1:
/**LeetCode Rotate List:Given a list, rotate the list to the right by k places, where k is non-negative.
* 题目:循环移动链表,等价于将链表从右边数的k个节点移动到表的前方
* 思路:移动倒是简单,重点是要找到链表倒数的k个数,就等价于找到倒数第...
分类:
其他好文 时间:
2015-03-20 14:28:55
阅读次数:
134
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2015-03-20 12:19:32
阅读次数:
132
Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant digit is at the head of the list.
vector plusOne(vector &d...
分类:
其他好文 时间:
2015-03-20 10:58:09
阅读次数:
136
Given the value of a+b and ab you will have to find the value of an+bn
Input
The input file contains several lines of inputs. Each line except the last line contains 3 non-negative integers p, q...
分类:
其他好文 时间:
2015-03-20 00:01:31
阅读次数:
450
题目链接:Plus One
Given a non-negative number represented as an array of digits, plus one to the number.
The digits are stored such that the most significant digit is at the head of the list.
这道题的要求是给定...
分类:
其他好文 时间:
2015-03-19 21:59:35
阅读次数:
117
题目描述: Largest Number Given a list of non negative integers, arrange them such that they form the largest number. For example, given [3, 30, 34, 5, 9],...
分类:
其他好文 时间:
2015-03-19 20:04:12
阅读次数:
129
Largest Number问题:Given a list of non negative integers, arrange them such that they form the largest number.For example, given[3, 30, 34, 5, 9], the l...
分类:
其他好文 时间:
2015-03-19 14:41:16
阅读次数:
127
Given a list of non negative integers, arrange them such that they form the largest number.
For example, given [3, 30, 34, 5, 9], the largest formed number is 9534330....
分类:
其他好文 时间:
2015-03-19 10:21:00
阅读次数:
170