httpd:apr_sockaddr_info_get()failedforxxxhttpd:Couldnotreliablydeterminetheserver‘sfullyqualifieddomain
name,using127.0.0.1forServerName在/usr/local/apache2/bin/apachectlstart启动Apache服务的时候出现的错误解决办法vi/etc/hosts127.0.0.1localhost.localdomain
l..
分类:
Web程序 时间:
2015-01-21 06:45:41
阅读次数:
194
httpd:apr_sockaddr_info_get()failedforxxxhttpd:Couldnotreliablydeterminetheserver‘sfullyqualifieddomain
name,using127.0.0.1forServerName在/usr/local/apache2/bin/apachectlstart启动Apache服务的时候出现的错误解决办法vi/etc/hosts127.0.0.1localhost.localdomain
l..
分类:
Web程序 时间:
2015-01-21 06:44:20
阅读次数:
164
The problem:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a plan, a...
分类:
其他好文 时间:
2015-01-21 06:34:49
阅读次数:
192
【题目】
Determine whether an integer is a palindrome. Do this without extra space.
click to show spoilers.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of...
分类:
其他好文 时间:
2015-01-20 22:21:27
阅读次数:
153
[root@zabbix~]#yuminstall-yphp-bcmath[root@zabbix~]#/etc/init.d/httpdrestartStoppinghttpd:[OK]Startinghttpd:httpd:apr_sockaddr_info_get()failedforzabbixhttpd:Couldnotreliablydeterminetheserver‘sfullyqualifieddomainname,using127.0.0.1forServerName[OK]修改后..
分类:
其他好文 时间:
2015-01-20 18:34:41
阅读次数:
277
Given a binary tree, determine if it is a valid binary search tree (BST).Assume a BST is defined as follows:The left subtree of a node contains only n...
分类:
其他好文 时间:
2015-01-20 13:36:44
阅读次数:
172
一:异常截图
二:我的实体@Entity
@Table(name = "p_user")
public class User extends AbstractEntity {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
//账号
@Column(name = "acco...
分类:
移动开发 时间:
2015-01-20 11:59:59
阅读次数:
156
标题:Palindrome Number通过率:29.1%难度:简单Determine whether an integer is a palindrome. Do this without extra space. 这个题没有理解是因为单词不认识,然后就是不知道什么是回文数,翻译一下,百度一下才....
分类:
其他好文 时间:
2015-01-19 19:01:54
阅读次数:
177
标题:Valid Parentheses通过率:27.7%难度:简单Given a string containing just the characters'(',')','{','}','['and']', determine if the input string is valid.The b...
分类:
其他好文 时间:
2015-01-18 12:57:08
阅读次数:
130
本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/42833739
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
思路:...
分类:
其他好文 时间:
2015-01-18 10:35:13
阅读次数:
157