码迷,mamicode.com
首页 >  
搜索关键字:extra    ( 2903个结果
Remove Duplicates from Sorted Array
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-06-04 21:38:05    阅读次数:233
随便记录一些东西
load_file()查看常用的配置文件:/usr/local/app/apache2/conf/httpd.conf/usr/local/app/php5/lib/php.ini/usr/local/app/apache2/conf/extra/httpd-vhosts.conf/etc/my.c...
分类:其他好文   时间:2014-06-02 09:22:41    阅读次数:298
leetcode Linked List Cycle
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?求链表是否有环的问题,要考虑链表为空的情况,定义一个快指针和一个慢指针,如果快指针和...
分类:其他好文   时间:2014-06-02 08:05:16    阅读次数:255
Linked List Cycle
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-05-30 16:08:05    阅读次数:238
Linked List Cycle II
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-05-30 15:59:56    阅读次数:249
PHP虚拟主机的配置
今天配置了一下虚拟目录,以下是我的配置方法。1编辑httpd.conf,查找Include conf/extra/httpd-vhosts.conf,把前面注释符号“#”删掉。2编辑httpd-vhosts.conf,我把WAMPServer安装在D:/wamp,所以我这里的路径是D:\wamp\A...
分类:Web程序   时间:2014-05-29 12:03:35    阅读次数:220
Palindrome Number (回文数)
回文数是指这样的数字:正读和倒读都是一样的。如:595,2332都是回文数,234不是回文数。注意:负数不是回文数Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could ne...
分类:其他好文   时间:2014-05-27 23:44:17    阅读次数:459
LeetCode: palindromes 题解
Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinki...
分类:其他好文   时间:2014-05-26 18:07:52    阅读次数:217
#Apache#多站点与虚拟目录配置
1、修改配置文件Apache\conf\httpd.conf找到LoadModule vhost_alias_module modules/mod_vhost_alias.so 去掉前面的#找到Include conf/extra/httpd-vhosts.conf ...
分类:其他好文   时间:2014-05-26 11:51:47    阅读次数:247
解决centos yum安装"No package nginx available."问题
问题原因:nginx位于第三方的yum源里面,而不在centos官方yum源里面解决方法:安装epel(Extra Packages for Enterprise Linux)a、去epel网站http://fedoraproject.org/wiki/EPEL下载b、我的系统是centos5.7,...
分类:其他好文   时间:2014-05-24 11:50:20    阅读次数:276
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!