Given an input string, reverse the string word by word. A word is defined as a sequence of non-space characters.The input string does not contain lead...
分类:
其他好文 时间:
2015-02-06 16:36:03
阅读次数:
104
前话 今天开始励志刷一下leetcode上面的题目(还好这个网站没被TG和谐)。从easy的开始,数一下差不多有40道,争取两个月搞定。题目 没想到做的第一道题目,虽然看似简单,却费了很大周折。题目如下:Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -3...
分类:
其他好文 时间:
2015-02-06 14:59:15
阅读次数:
130
一、 题目
试确定一个整数是否为回文数。并不使用额外的空间。
提示:
负整数可能是回文数吗?(例如 -1)
如果你想要将整数转换成字符串,那么你注意到不能使用额外的空间的限制。
可能你尝试翻转整数,但是,如果你已经解决这个问题“逆向整型”,你要知道,颠倒整数可能会溢出的情况。那么你会如何处理这样的情况呢?
要有解决这个问题的一种更通用的方法。
二、 分析
了解题目的意思后,其实问题...
分类:
其他好文 时间:
2015-02-06 14:55:47
阅读次数:
151
<script?type="text/javascript">
<!--?one-way?linkedlist?reverse?in?javascript?-->
function?Node(value)?{
this.value?=?value;
this.next?=?null;
}
Node.prototype.setNext?=?fun...
分类:
编程语言 时间:
2015-02-04 21:58:39
阅读次数:
288
数组的逆序,只能用于数组,不能用于哈希表
function reverseTable(tab)
local tmp = {}
for i = 1, #tab do
local key = #tab
tmp[i] = table.remove(tab)
end
return tmp
end
// 示例
local t = {"one", "two", "three"}
...
分类:
编程语言 时间:
2015-02-04 21:50:25
阅读次数:
6498
思路:
这种题目,举个例子能让思路更加清晰,通过在草纸上演算可知,题目要分两种情况,m==1和m>1的情况,然后就是围绕这两种情况展开讨论,删除后面的结点,然后将后面的结点添加到前面,一次搞定,bravo!...
分类:
其他好文 时间:
2015-02-04 21:49:53
阅读次数:
215
1, 常规实现: scala> val list = List(1,2,3,4,5)
list: List[Int] = List(1, 2, 3, 4, 5)
scala> list.foldLeft(List.empty[Int])((res, cur) => cur::res)
res0: List[Int] = List(5, 4, 3, 2, 1) 2, 加上泛型...
分类:
其他好文 时间:
2015-02-04 18:59:52
阅读次数:
182
G - G
Description
Ignatius likes to write words in reverse way. Given a single line of text which is written by Ignatius, you should reverse all the words and then output them.
...
分类:
其他好文 时间:
2015-02-04 14:48:58
阅读次数:
163
功能:翻转字符串 ,翻转数组, 用于STL的翻转。
头文件:
例子:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
char s[100];...
分类:
其他好文 时间:
2015-02-04 14:42:11
阅读次数:
88
Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, given L being 1→2→3→4→5→6,...
分类:
其他好文 时间:
2015-02-03 22:44:12
阅读次数:
236