码迷,mamicode.com
首页 >  
搜索关键字:zen coding    ( 13130个结果
sysconfig模块
# -*- coding: utf-8 -*-# python:2.x__author__ = 'Administrator'import sysconfig#sysconfig:解释器编译时配置#作用:访问用于构建python配置设置#版本:2.7及之后#其他:在2.7中,sysconfig已经从...
分类:其他好文   时间:2014-07-12 00:01:25    阅读次数:322
python中的函数存入list中的实例
最近由于接触了python这个强大的东西,在写代码时考虑到代码的扩展性,就想到了将python的函数名存入list中。有点像习惯的c/c++中的函数指针的意思。下面上代码: 1 # coding=utf-8 2 #!/usr/bin/python 3 #脚本的用法 python nn_daemon....
分类:编程语言   时间:2014-07-09 19:46:27    阅读次数:208
Java 字符串String(一)拆分
在java语言中,String是一个包含char数组、其他字段,方法组成的java类。而在我们的coding生涯中,字符串又往往是我们最常也是最多打交道的,因此下面的一些常用的方法列举一下:toCharArray()//将此字符串转换为一个新的字符数组Arrays.sort()//对数组进行排序Ar...
分类:编程语言   时间:2014-07-09 17:39:04    阅读次数:294
Python脚本传参和Python中调用mysqldump
#coding=utf-8 import MySQLdb import sys import os # 李红颖编写,用户湖南CLV数据分割使用 print 'dump database:',sys.argv[1] ##传入的第一个参数,数据库名称 print 'dump table:',sys.argv[2] ##传入的第二个参数,表名称 dbname=sys.argv[1] tablen...
分类:数据库   时间:2014-07-09 09:35:51    阅读次数:236
Cracking the Coding Interview Q2.3
Implement an algorithm to delete a node in the middle of a single linked list, given only access to that node.
分类:其他好文   时间:2014-07-08 22:03:31    阅读次数:195
Cracking the Coding Interview Q2.2
Implement an algorithm to find the kth to last element of a singly linked list.
分类:其他好文   时间:2014-07-08 22:01:38    阅读次数:209
Cracking the Coding Interview Q1.8
Assume you have a method isSubstring which checks if one word is a substring of another. Given two strings, s1 and s2, write code to check if s2 is a ...
分类:其他好文   时间:2014-07-08 21:44:23    阅读次数:177
Cracking the Coding Interview Q2.6
Given a circular linked list, implement an algorithm which returns node at the beginning of the loop.DEFINITIONCircular linked list: A (corrupt) linke...
分类:其他好文   时间:2014-07-08 17:29:35    阅读次数:200
Cracking the Coding Interview Q2.7
检测链表是否是palindrome.思路1:翻转并比较。思路2:迭代。思路3:递归。 public static boolean isPalindrome(LinkedListNode head) { LinkedListNode fast = head; Link...
分类:其他好文   时间:2014-07-08 17:15:57    阅读次数:267
Cracking the Coding Interview Q2.5
You have two numbers represented by a linked list, where each node contains a single digit. The digits are stored in reverse order, such that the 1’s ...
分类:其他好文   时间:2014-07-08 13:34:40    阅读次数:195
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!