码迷,mamicode.com
首页 >  
搜索关键字:le    ( 2309个结果
Manacher模版
求字符串中出现过的最长回文子串 const int MAXN = 110010; //字符串长度<MAXN char Ma[MAXN * 2]; int Mp[MAXN * 2]; void Manacher(char s[]) { int l = 0, len = strlen(s); Ma[l++] = '$'; Ma[l++] = '#'; for (int i = 0; i<le...
分类:其他好文   时间:2014-12-07 01:24:24    阅读次数:134
Leetcode: Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他好文   时间:2014-12-05 21:07:13    阅读次数:167
Influxdb的存储引擎
创建Influxdb数据库时,我们可以看到下面选项,每个选项的含义就是本文要描述的: Influxdb内部数据的存储可以使用不同的存储引擎。当前0.8.7版本支持的是LevelDB, RocksDB, HyperLevelDB, 和 LMDB。 这几个数据库都是kv类型的数据库,相关信息如下: Le...
分类:数据库   时间:2014-12-05 17:01:27    阅读次数:772
原创JavaScript Jquery特效之----多重特效折叠菜单(附带详细注释和算法思路)
折叠菜单 * { padding: 0; margin: 0; } #FoldingMenuBar { margin: 200px;; } li { list-style: none; } .left { float: left; } .TotalMenu { float: le...
分类:编程语言   时间:2014-12-01 11:27:32    阅读次数:229
Leetcode-Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他好文   时间:2014-11-29 06:50:19    阅读次数:189
leetcode[96] Binary Tree Inorder Traversal
给定树根root。实现中序遍历,也就是左根右。用递归的话,很简单,左边的返回值加上root的再加上右边的就行。我自己写的有点挫:/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *le...
分类:其他好文   时间:2014-11-25 01:34:34    阅读次数:129
用webstorm自动编译less产出css和sourcemap
css产出sourcemap有什么用呢,可能大家要问这个问题了。请移步这里https://developers.google.com/chrome-developer-tools/docs/css-preprocessors?hl=zh-CN在chrome中我们通过sourcemap可以直接调试le...
分类:Web程序   时间:2014-11-24 13:27:32    阅读次数:267
Leetcode-Reverse Nodes in k-Group
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then le...
分类:其他好文   时间:2014-11-22 07:04:50    阅读次数:136
Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
分类:其他好文   时间:2014-11-21 18:34:47    阅读次数:167
马哥6-1
bash中常用的测试有三类:整数测试:-gt-le-ne-eq-ge-lt文件测试:-eFILE:测试文件是否存在-fFILE:测试文件是否为普通用户-dFILE:测试指定路径是否为目录-rFILE:测试当前用户对指定文件是否有读取权限-wFILE-xFILE[-e/etc/inittab][-x/etc/rc.d/rc.sysinit]多分支的if语句..
分类:其他好文   时间:2014-11-21 16:41:22    阅读次数:186
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!