码迷,mamicode.com
首页 >  
搜索关键字:take skip    ( 2689个结果
debug makefile 及 lint 软件质量软件
make -dshould give you more than enough information to debug your makefile.Be warned: it will take some time and effort to analyze the output but load...
分类:其他好文   时间:2014-07-28 14:58:43    阅读次数:490
LeetCode "Combinations"
Typical recurrsion\DFS problem. Just take care of memory use.class Solution {public: vector> ret; void go(int currMaxN, int currK, int k, unorde...
分类:其他好文   时间:2014-07-28 11:35:40    阅读次数:240
Lesson 25-26 Distractions at the Wheel
一 Words 1 distraction 使分心,娱乐,使恼火n e.g. A very clingy child can drive a parent to distraction.一个非常黏人的孩子会让父母不胜其烦。 2 at the wheel 在驾驶室,当主管 e.g. I’ll take...
分类:其他好文   时间:2014-07-27 21:38:15    阅读次数:220
[Python]ConfigParser解析配置文件
最近发现很多接口配置都硬编码在soucefile中了,于是就看了下python怎么解析配置文件,重构下这一块。这个应该是早就要作的。。。[mysqld] user=mysql pid-file=/var/run/mysqld/mysqld.pid skip-external-locking old_passwords=1 skip-bdb skip-innodb users=aa,bb,cc [name..
分类:编程语言   时间:2014-07-27 12:02:08    阅读次数:255
浅析SkipList跳跃表原理及代码实现
本文将总结一种数据结构:跳跃表。前半部分跳跃表性质和操作的介绍直接摘自《让算法的效率跳起来--浅谈“跳跃表”的相关操作及其应用》上海市华东师范大学第二附属中学 魏冉。之后将附上跳跃表的源代码,以及本人对其的了解。难免有错误之处,希望指正,共同进步。谢谢。 跳跃表(Skip List)是1987年才诞...
分类:其他好文   时间:2014-07-27 09:50:02    阅读次数:370
hexdump用法
**可用参数** [-bcCdovx] [-e format_string] [-f format_file] [-n length] [-s skip] file ... 参数含义: -b 单字节八进制显示,十六进制显示偏移量,每行显示16个字符,每字符用三位显示,不足补零,列间以空格...
分类:其他好文   时间:2014-07-26 03:34:07    阅读次数:627
MySQL学习笔记
/* 启动MySQL */net start mysql/* 连接与断开服务器 */mysql -h 地址 -P 端口 -u 用户名 -p 密码/* 跳过权限验证登录MySQL */mysqld --skip-grant-tables-- 修改root密码密码加密函数password()update...
分类:数据库   时间:2014-07-25 14:12:51    阅读次数:381
mysql常用命令整理
整理下常用命令,方便记忆,没事可拿出来瞅瞅,;1、连接mysql数据库:#mysql-h1.1.1.1-uroot-pzabbix2、mysql改密码mysqladmin命令格式:mysqladmin-u用户名-p旧密码password新密码(password函数)2)忘记root密码#vi/etc/my.cnf在[mysqld]的段中加上一句:skip-grant-tables..
分类:数据库   时间:2014-07-25 11:31:51    阅读次数:385
CF 14B B. Young Photographer
Among other things, Bob is keen on photography. Especially he likes to take pictures of sportsmen. That was the reason why he placed himself in position x0 of a long straight racetrack and got ready...
分类:其他好文   时间:2014-07-25 11:26:31    阅读次数:447
IP address could not be resolved: Temporary failure in name resolution
140724 18:44:55 [Warning] IP address '61.143.209.110' could not be resolved: Temporary failure in name resolution 问题产生的原因: 出现错误的原因是MYSQL Server在本地内存中维护了一个非本地的Client TCP cache,这个cache中包含了远程Client的登录信息,比如IP地址,hostname等信息。 如果Client连接到服务器后,Mysql首先会在本地TCP池中根据I...
分类:其他好文   时间:2014-07-25 11:06:31    阅读次数:199
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!