上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 84 下一页
摘要: Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.罗马数字是由字符I,V,X,L,C,D,M等等表示的,其中I = 1;V = 5;X =... 阅读全文
posted @ 2015-02-05 17:03 穆穆兔兔 阅读(147) 评论(0) 推荐(0) 编辑
摘要: Givennnon-negative integersa1,a2, ...,an, where each represents a point at coordinate (i,ai).nvertical lines are drawn such that the two endpoints of ... 阅读全文
posted @ 2015-02-05 14:28 穆穆兔兔 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 邮件协议需要配置client 端 和 server 端,在linux redhat 下client 端: 使用linux 自带的Evolution,2.12.3, 主要配置在preferrence 下server 端: 启动 sendmail 作为服务器,供收发使用http://blog.csdn... 阅读全文
posted @ 2015-02-03 17:11 穆穆兔兔 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 转载http://coolshell.cn/articles/12103.html在知乎上,有个人问了这样的一个问题——为什么vfork的子进程里用return,整个程序会挂掉,而且exit()不会?并给出了如下的代码,下面的代码一运行就挂掉了,但如果把子进程的return改成exit(0)就没事。... 阅读全文
posted @ 2015-02-03 10:57 穆穆兔兔 阅读(282) 评论(0) 推荐(0) 编辑
摘要: Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The... 阅读全文
posted @ 2015-01-28 13:44 穆穆兔兔 阅读(225) 评论(0) 推荐(0) 编辑
摘要: Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i... 阅读全文
posted @ 2015-01-27 14:56 穆穆兔兔 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Implementatoito convert a string to an integer.Hint:Carefully consider all possible input cases. If you want a challenge, please do not see below and ... 阅读全文
posted @ 2015-01-26 22:43 穆穆兔兔 阅读(176) 评论(0) 推荐(0) 编辑
摘要: Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321click to show spoilers.Have you thought about this?Here are som... 阅读全文
posted @ 2015-01-26 19:06 穆穆兔兔 阅读(180) 评论(0) 推荐(0) 编辑
摘要: http://andrew913.iteye.com/blog/398648首先来介绍下apache的一个工具apxs。apxs是一个为Apache HTTP服务器编译和安装扩展模块的工具,用于编译一个或多个源程序或目标代码文件为动态共享对象,使之可以用由mod_so提供的LoadModule指令在... 阅读全文
posted @ 2015-01-26 15:01 穆穆兔兔 阅读(3015) 评论(0) 推荐(0) 编辑
摘要: The string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font fo... 阅读全文
posted @ 2015-01-26 12:50 穆穆兔兔 阅读(210) 评论(0) 推荐(0) 编辑
上一页 1 ··· 65 66 67 68 69 70 71 72 73 ··· 84 下一页