EPEL 是什么?EPEL (Extra Packages for Enterprise Linux,企业版Linux的额外软件包) 是Fedora小组维护的一个软件仓库项目,为RHEL/CentOS提供他们默认不提供的软件包。这个源兼容RHEL及像CentOS和Scientific Linux这样...
分类:
其他好文 时间:
2014-09-12 16:37:13
阅读次数:
250
免费下载地址 http://bbs.timevery.com/bbs/forum.php?mod=viewthread&tid=30&extra=page%3D1...
分类:
Web程序 时间:
2014-09-12 15:09:23
阅读次数:
174
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space? 1 /** 2 * Definition for singly-linked l....
分类:
其他好文 时间:
2014-09-11 22:18:12
阅读次数:
311
定制的代码通常写在 `app/admin.py` 中的一个名为 `ModelAdmin` 的类里,主要以属性和方法的形式。或者更进一步说,代码大都存在于该类的 `change_view(self, request, object_id, extra_context=None)` 方法 或 ...
分类:
其他好文 时间:
2014-09-11 21:04:22
阅读次数:
163
Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (i...
分类:
其他好文 时间:
2014-09-11 20:53:22
阅读次数:
247
1、题目Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?2、思路设置两个指针,一个每次走一步,另一个每次走两步。走两步的一定会追上走...
分类:
其他好文 时间:
2014-09-11 19:04:32
阅读次数:
223
转自:http://www.math.org.cn/forum.php?mod=viewthread&tid=2045&extra=page%3D42说明:这是伍鸿熙先生《黎曼几何初步》一书的序言,虽是谈数学,但我觉得对我们的治学极有助益,所以花点时间贴上来,与大家分享。**************...
分类:
其他好文 时间:
2014-09-10 13:55:20
阅读次数:
396
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-10 09:26:30
阅读次数:
198
题目原文:
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 conv...
分类:
其他好文 时间:
2014-09-09 13:04:18
阅读次数:
156
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?算法:...
分类:
其他好文 时间:
2014-09-09 11:30:08
阅读次数:
188