码迷,mamicode.com
首页 >  
搜索关键字:python list    ( 182949个结果
Conditionals
1. Modulus operator (%)The modulus operator works on integers and yields the remainder when the first operand is divided by the second. In Python, the...
分类:其他好文   时间:2014-04-29 22:00:56    阅读次数:495
[leetcode]Word Ladder II @ Python
[leetcode]Word Ladder II @ Python原题地址:http://oj.leetcode.com/problems/word-ladder-ii/参考文献:http://blog.csdn.net/doc_sgl/article/details/13341405 ht...
分类:编程语言   时间:2014-04-29 21:42:30    阅读次数:590
django 中的延迟加载技术,python中的lazy技术
---恢复内容开始---说起lazy_object,首先想到的是django orm中的query_set、fn.Stream这两个类。query_set只在需要数据库中的数据的时候才 产生db hits。Stream对象只有在用到index时才会去一次次next。例子: f = Stream(.....
分类:编程语言   时间:2014-04-29 21:27:01    阅读次数:676
python 学习笔记 (二)
逻辑运算符python不用&& || !表示与或非,用andornot,优先级是not > and > or。bool类型:True 和 False条件语句if expression1: ;elif expression2: ;else: ;字符串函数word = raw_inpu...
分类:编程语言   时间:2014-04-29 21:12:45    阅读次数:492
【Python】一个简单的例子
问题描述: Python基础篇 参考资料: (1)http://www.cnblogs.com/octobershiner/archive/2012/12/04/2801670.html (2)http://www.cnblogs.com/itech/archive/2010/06/20/17603...
分类:编程语言   时间:2014-04-29 17:29:59    阅读次数:610
ASPNET服务端控件练习(一个机试题)
简单记录:模糊查询的select语句的拼写 public List GetWhereStudent(string name, string sub, string isG) { List lt = new List(); str...
分类:Web程序   时间:2014-04-29 17:17:34    阅读次数:864
spring 拦截器拦截点的配置
实用正则org.springframework.aop.support.RegexpMethodPointcutAdvisor然后 .*_cache.* 表示拦截...
分类:编程语言   时间:2014-04-29 16:25:10    阅读次数:510
中科院随机算法课程(孙晓明主讲)topic list
如题,列出《随机算法》课程的topic list,以记录和供有兴趣的朋友研究。Lession1:生日悖论、生日攻击、两个常用数学工具(马尔科夫不等式、切比雪夫不等式)Lession2:radom quick sort(hw)、矩阵乘法判定、min(max())=max(min())、复杂性类(BPP...
分类:其他好文   时间:2014-04-29 16:16:55    阅读次数:596
Reorder List
两种思路,一种递归的解决T(n) = T(n-2) + O(n);另外一种思路,将后一半的链表原地反转,然后再逐个遍历拼接到前一半的链表上。这种做法能够在O(n)的时间复杂度内完成。
分类:其他好文   时间:2014-04-29 16:06:41    阅读次数:395
A quest for the full InnoDB status
When running InnoDB you are able to dig into the engine internals, look at various gauges and counters, see past deadlocks and the list of all open tr...
分类:数据库   时间:2014-04-29 15:41:04    阅读次数:686
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!