码迷,mamicode.com
首页 >  
搜索关键字:extra    ( 2903个结果
小企鹅fcitx输入法
#编辑~/.xinitrc文件#export GTK_IM_MODULE=fcitx#export QT_IM_MODULE=fcitx#export XMODIFIERS="@im=fcitx"pacman -S fcitx-im fcitx-table-extra fcitx-sunpinyin...
分类:其他好文   时间:2014-07-22 22:55:17    阅读次数:179
apache虚拟主机配置
在httpd.conf文件中配置一台www.sohu.cn的虚拟主机,然后在window系统中注册www.sohu.cn这台主机。在httpd.conf文件中启用httpd-vhosts.conf就是把#注销掉#Virtualhosts,虚拟主机Includeconf/extra/httpd-vhosts.conf假设我们的虚拟主机在f:/myweb盘[该站点,事先有]设置http-v..
分类:其他好文   时间:2014-07-15 10:47:39    阅读次数:246
MySQL如何优化GROUP BY
执行GROUP BY子句的最一般的方法:先扫描整个表,然后创建一个新的临时表,表中每个组的所有行应为连续的,最后使用该临时表来找到组并应用聚集函数(如果有聚集函数)。在某些情况中,MySQL通过访问索引就可以得到结果,而不用创建临时表。此类查询的 EXPLAIN 输出显示 Extra列的值为...
分类:数据库   时间:2014-07-14 15:07:55    阅读次数:248
Remove Duplicates from Sorted Array
描述 Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this in ...
分类:其他好文   时间:2014-07-14 13:46:43    阅读次数:229
apache VirtualHost 设置
1、先打开在httpd.conf 中的Include etc/extra/httpd-vhosts.conf2、在httpd-vhosts.conf写上如下配置,Apache只会认同一个端口的第一条VirtualHost ServerAdmin webmaster@dummy-host.exa...
分类:其他好文   时间:2014-07-14 10:23:39    阅读次数:200
windows下修改apache并发数
还没有尝试修改apache的最大连接数,方法如下:步骤一先修改 /path/apache/conf/httpd.conf文件。# vi httpd.conf将“#Include conf/extra/httpd-mpm.conf”前面的 “#” 去掉,保存。 步骤二再修改 /path/apache/...
分类:Windows程序   时间:2014-07-14 00:06:28    阅读次数:297
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. * class ListNode { * int val; * ...
分类:其他好文   时间:2014-07-13 16:32:04    阅读次数:152
LeetCode——Pascal's Triangle II
Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? 原题链接:https:/...
分类:其他好文   时间:2014-07-12 20:43:11    阅读次数:213
Windows下Apache配置SSL以支持https及出错的解决办法
步骤一:安装apache,使其支持SSL,并安装php1.安装配有SSL模块的apache,apache_2.2.8-win32-x86-openssl-0.9.8g2.配置apache以支持SSL:1)打开apache的配置文件conf/httpd.confLoadModulessl_modulemodules/mod_ssl.so Includeconf/extra/httpd-ssl.conf去掉两行前面的#2)注意修..
分类:Windows程序   时间:2014-07-09 08:58:17    阅读次数:483
【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? 解答 首先要注意空链表不成环;不能开额外的空间,即空间复杂度是o(1),可采用“快慢指针”查检查链表是否含有环,如果在快的指针能够追上慢的指针,则有环,否...
分类:其他好文   时间:2014-07-08 19:17:47    阅读次数:160
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!