RHEL默认使用 RedHat 公司的源,但该源是需要收费订阅的,因此一般我们只使用光盘自带的软件源。但是也有一些其他的第三方软件源:1.EPEL EPEL,即Extra Packages for Enterprise Linux,是由 Fedora 社区创建维护,为 RHEL 及衍生发行版如 C....
分类:
其他好文 时间:
2014-09-28 13:46:22
阅读次数:
215
Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for a...
分类:
其他好文 时间:
2014-09-26 19:48:18
阅读次数:
182
Palindrome NumberTotal Accepted:19369Total Submissions:66673My SubmissionsDetermine whether an integer is a palindrome. Do this without extra space.推断...
分类:
其他好文 时间:
2014-09-25 14:43:19
阅读次数:
137
archlinux yaourt安装 但一直报错如下: :: Synchronizing package databases... core is up to date extra is up to date community is up to date error: fail...
分类:
数据库 时间:
2014-09-24 23:46:07
阅读次数:
1994
dpi是什么呢?dpi是“dot per inch”的缩写,每英寸像素数。四种密度分类: ldpi (low), mdpi (medium), hdpi (high), and xhdpi (extra high)一般情况下的普通屏幕:ldpi是120,mdpi是160,hdpi是240,xhdpi...
分类:
移动开发 时间:
2014-09-24 11:55:06
阅读次数:
175
Commons LangThe standard Java libraries fail to provide enough methods for manipulation of its core classes. Apache Commons Lang provides these extra ...
分类:
编程语言 时间:
2014-09-23 13:16:04
阅读次数:
205
题目:
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
这是一道关于链表比较简单的题,很顺利就解决了,不多说啦,上代码啦
# Definition for singly-linked list.
# ...
分类:
其他好文 时间:
2014-09-22 22:07:03
阅读次数:
233
dpi是什么呢? dpi是“dot per inch”的缩写,每英寸像素数。 四种密度分类: ldpi (low), mdpi (medium), hdpi (high), and xhdpi (extra high) 一般情况下的普通屏幕:ldpi是120,mdpi是160,hdpi是240,xh...
分类:
移动开发 时间:
2014-09-22 14:00:32
阅读次数:
243
一、虚拟主机配置方法 1,在文件C:/windows/system32/drivers/etc/hosts 加上 127.0.0.1 你的域名 2,在 httpd.conf里的去掉# Include conf/extra/httpd-vhosts.conf 3,在apache目录里找到 conf.....
分类:
其他好文 时间:
2014-09-21 22:34:11
阅读次数:
330
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
Follow up:
Can you solve it without using extra space?
/**
* Definition for singly-linked list.
...
分类:
其他好文 时间:
2014-09-21 18:31:21
阅读次数:
233