码迷,mamicode.com
首页 >  
搜索关键字:extra    ( 2903个结果
图标字体IcoMoon 使用
IcoMoon 使用官方地址 http://icomoon.io/实际上,它是一种字体,只不过这种字体的字象图标一样,比如windows中自带的MT Extra Webdings Wingdings字体。使用的方法就是引入CSS即可我们需要在IcoMoon App中定制他们,网站可以为你生成图标的....
分类:其他好文   时间:2014-07-26 00:10:06    阅读次数:593
【LeetCode】【Python】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-07-25 11:09:21    阅读次数:206
MySQL SQL优化
--MySQL SQL优化-------------------2014/07/23几种order by的情况 乍一看这个问题好像有点复杂,我们从最简单的case开始看起。 用这个表来说明:(10w行数据)1、 最简单的order ―― order by索引字段从explain的结果来看(Extra...
分类:数据库   时间:2014-07-23 20:49:45    阅读次数:309
QQ群里收集的外企iOS开发的笔试题
一组外企iOS开发的笔试题,您能回答出来吗?从群里收集来的。1 why can't NSArray contain NSInteger Instance? with which extra step can you do it?2.complete this code so that it beco...
分类:移动开发   时间:2014-07-23 12:08:16    阅读次数:240
Linked List Cycle leetcode II java (寻找链表环的入口)
题目: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 spac....
分类:编程语言   时间:2014-07-23 12:02:46    阅读次数:304
Linked List Cycle leetcode java (链表检测环)
题目:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?题解:这道题连带着II是很经典的,在看CC150时候,纠结这个问题纠结了很久....
分类:编程语言   时间:2014-07-23 12:02:26    阅读次数:311
wordpress迁移以及遇到的一些问题[mysql备份导入导出][固定链接404]
总的问题有两个,一是apache的配置,二是mysql的导出和导入。以及迁移后遇到的一些问题解决过程和方法。 A机器为老服务器,B为新服务器,A机器使用Appserv,B使用wmap,在配置多站点时候,遇到了一点儿不同。 除了都要打开httpd.conf Include conf/extra/httpd-vhosts.conf LoadModule rewrite_...
分类:数据库   时间:2014-07-22 22:33:54    阅读次数:267
Apache配置基于IP的虚拟主机 Apache virtual host configuration is based on the IP
Step 1: 检查是否开启 httpd-vhosts.conf apache/conf/httpd.conf文件# Virtual hostsInclude conf/extra/httpd-vhosts.conf 如果没有开启,必须在httpd.conf文件中设置;如果开启,则可以在apa...
分类:其他好文   时间:2014-07-22 08:04:37    阅读次数:169
Apache配置基于端口号的虚拟主机 Apache virtual host configuration is based on the port
有可能只有一个ip出口,但却有多个项目,那么就需要基于端口号架设虚拟主机。Step 1: 检查是否开启 httpd-vhosts.conf apache/conf/httpd.conf文件# Virtual hostsInclude conf/extra/httpd-vhosts.conf 如...
分类:其他好文   时间:2014-07-22 08:01:36    阅读次数:282
LeetCode "Populating Next Right Pointers in Each Node"
Apparently BFS is the most obvious one.. but it is not that simple - only constant extra space is provided.Then the only strategy to take is recursion...
分类:其他好文   时间:2014-07-22 00:39:35    阅读次数:258
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!