- 博客(103)
- 收藏
- 关注
转载 Wildcard Matching
Wildcard Matching Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches a...
2013-08-11 09:05:00 165
转载 Multiply Strings
Multiply Strings Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can b...
2013-08-10 10:45:00 155
转载 【LeetCode】First Missing Positive
【LeetCode】First Missing Positive Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]...
2013-08-07 16:59:00 158
转载 【LeetCode】Combination Sum II
【LeetCode】Combination Sum II Given a collection of candidate numbers (C) and a target number (T), find all unique combinations inCw...
2013-08-07 15:50:00 155
转载 Reverse Integer
Reverse Integer Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321比较简单,以下是步骤:1. 计算x的长...
2013-07-22 23:23:00 88
转载 ZigZag Conversion
ZigZag Conversion nRows = 20 2 4 6 81 3 5 7 9nRows = 30 4 8 12 161 3 5 7 9 11 13 152 6 10 14...
2013-07-22 22:22:00 77
转载 Longest Palindromic Substring-----LeetCode
Longest Palindromic Substring-----LeetCode 两种解法,动态规划和KMP变种动态规划,类似于lcs的解法,数组flag[i][j]记录s从i到j是不是回文首先初始化,i>=j时,flag[i][j]=true,这...
2013-07-22 20:51:00 87
转载 配置Django+mysql+pydev(x64)
配置Django+mysql+pydev(x64) mysqldb需要安装64位的(http://ishare.iask.sina.com.cn/f/21839771.html),否则出现import _mysql ImportError: DLL load...
2013-06-28 13:12:00 81
转载 Add Two Numbers-----LeetCode
Add Two Numbers-----LeetCode You are given two linked lists representing two non-negative numbers. The digits are stored in reverse o...
2013-06-26 11:48:00 109
转载 Longest Substring Without Repeating Characters-----LeetCode
Longest Substring Without Repeating Characters-----LeetCode Given a string, find the length of the longest substring without repeatin...
2013-06-25 22:08:00 77
转载 Median of Two Sorted Arrays-----LeetCode
Median of Two Sorted Arrays-----LeetCode There are two sorted arrays A and B of size m and n respectively. Find the median of the two...
2013-06-24 21:02:00 75
转载 Two Sum-----LeetCode
Two Sum-----LeetCode Given an array of integers, find two numbers such that they add up to a specific target number.The function tw...
2013-06-24 17:52:00 86
转载 Linux commond
Linux commond 平时用linux时,我有一个习惯就是把遇到的,比较有用,并且容易忘的命令,放到一个文本文件中,没事的时候可以拿出来看看,这样可以加深印象,时间长了这些命令的用法基本上都能掌握了。以下是100个用法,有什么不对,还请大家指正。1,ech...
2013-04-09 17:15:00 103
转载 重新梳理Python基础(11)
重新梳理Python基础(11) 1. python中的继承class Parent(object): def override(self): print "PARENT override()" def impl...
2013-03-23 21:50:00 88
转载 重新梳理Python基础(10)
重新梳理Python基础(10) 1. 今天学了一些概念。(书的第41~43章)用这个方法可以分清楚class、object、instance## Animal is-a object (yes, sort of confusing) look at t...
2013-03-22 22:42:00 113
转载 重新梳理Python基础(9)
重新梳理Python基础(9) 1. list相关的有一个比较有趣的问题,就是mystuff.append('hello'),python是怎么解释的。这里有段话讲的比较清楚,就不翻译了,直接贴过来。Python sees you mentionedm...
2013-03-21 21:27:00 95
转载 重新梳理Python基础(8)
重新梳理Python基础(8) 1. 整理python的关键字# _*_ coding:utf-8 _*_anddel #删除list中的某个元素或者这个list,同样适用于字典fromnotwhileaselifglobal...
2013-03-20 22:43:00 84
转载 重新梳理Python基础(7)
重新梳理Python基础(7) 1. list比较熟悉了,但是list的函数们还不清楚,参考http://docs.python.org/2/tutorial/datastructures.html2. for和while经验是尽量少用while,因为w...
2013-03-19 18:27:00 92
转载 BAE博客开发之基础知识积累----Django篇(1)
BAE博客开发之基础知识积累----Django篇(1) 1. Django如何新建一个网站python django-admin.py startproject mysite在mysite文件夹下会生成如下文件:mysite/ m...
2013-03-18 21:13:00 101
转载 重新梳理Python基础(6)
重新梳理Python基础(6) 整理的一些符号(前三个在java和c中是不这样表达的,用&&、||、!表达)andornot!=(not equal)==(equal)>=(greater-than-equ...
2013-03-18 11:32:00 80
转载 重新梳理Python基础(5)
重新梳理Python基础(5) 这个系列的博客是学习《Learn Python the Hard Way》中做的笔记。1. 由于今天需要看的five chapters是复习性质的内容,把前边的内容综合了一下,所以没有新内容只把代码贴在这View Code...
2013-03-18 00:14:00 73
转载 重新梳理Python基础(4)
重新梳理Python基础(4) 1. 文件写操作文件写操作,需要在打开文件的时候添加参数,如open("filename", "w")以下是对文件操作的函数小结close -- Closes the file. Like File->Sav...
2013-03-16 12:10:00 79
转载 重新梳理Python基础(3)
重新梳理Python基础(3) 1. python输入raw_input()函数。a = raw_input() #得到的是字符串a = int(raw_input()) #如果想得到int,只能这样如果输入特殊字符,比如\t \n等,会和输入一...
2013-03-15 22:33:00 73
转载 重新梳理Python基础(2)
重新梳理Python基础(2) 1. String类型输出,看示例x = "There are %d types of people" % 10binary = "binary"do_not = "don't"y = "Those who k...
2013-03-14 16:24:00 83
转载 重新梳理Python基础(1)
重新梳理Python基础(1) 1. 脚本中写中文出现乱码,用以下可以解决。参考http://www.python.org/dev/peps/pep-0263/ # coding=<encoding name> ...
2013-03-13 23:28:00 69
转载 动态网站学习笔记(2)
动态网站学习笔记(2) 1. 在页面上显示PHP的worning、notice等的代码error_reporting(E_ALL);ini_set("display_errors", TRUE); 2. 写php代码的时候,应该尽量避免...
2013-03-12 23:26:00 182
转载 HttpClient模拟登陆
HttpClient模拟登陆 httpclient登录新浪微博(非SDK方式)分享此文章苦逼的折腾了快一星期,总算把新浪微博rsa加密登录折腾ok了,这里需要注意的是httpclient最好用4.0的,否则cookie管理很是问题。进入正题,...
2013-03-11 23:13:00 1532
转载 动态网站学习笔记(1)
动态网站学习笔记(1) 1. 为什么给一个URL发送的http请求里会有host这一项Accept:text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8Accept-Charset...
2013-03-09 20:36:00 95
转载 httpclient2
httpclient2 用了大半天时间才了解如何使用httpclient来进行https访问,现记录,已备后忘。 httpclient完全支持ssl连接方式。通常,如果不需要进行客户端认证和服务器端认证的ssl连接,httpclient的处理方式是和ht...
2013-01-08 23:36:00 129
转载 httpclient
httpclient 1.拳头之Get/Post拳头是最基本的一重武器,也是最重要的,好比练武之人必须先扎稳马步。java 代码HttpClienthttpclient=newHttpClient();//创建一个客户端,类似打开一个浏览器...
2013-01-08 23:24:00 193
转载 每天学点python(4)
每天学点python(4) ==================================================================================================================...
2012-12-28 17:47:00 86
转载 用python写了一个读取网页的url的脚本
用python写了一个读取网页的url的脚本 想从一个网页下载zip包,查看源文件发现下载文件的链接有一定的特征,因此花了半个小时写了个脚本,很简单,因为对函数不熟悉还查看了文档,用的时间长了一点。脚本执行过后,直接把地址复制到迅雷里就可以一下下载很多个文件了,...
2012-12-14 00:35:00 308
转载 模拟退火法求解非线性规划的解
模拟退火法求解非线性规划的解 import randomimport mathXMAX = 4YMAX = 4Tolerance = 0.000001MarkovLength = 10000DecayScale = 0.95S...
2012-12-11 22:44:00 1673
转载 GAE构建应用
GAE构建应用 1. deploy应用的时候如果出现错误代码401的时候,访问如下网址:https://accounts.google.com/DisplayUnlockCaptcha2. 如果出现403错误,要在account里create app...
2012-12-05 11:12:00 121
转载 每天学点python(3)
每天学点python(3) ======================================== 目录 =====================================================1. 输入...
2012-11-25 22:59:00 136
转载 每天学点python(2)
每天学点python(2) ========================================================================================================1. Tuple2. ...
2012-11-19 23:16:00 139
转载 每天学点python(1)
每天学点python(1) 通过这段时间的学习,发现很有必要精通一门动态语言,选择了比较火也较好入门的Python。这次学习这门语言,准备通过官方文档的tutorial先了解下与之前的c++和java有什么不同,然后找一本比较好的教材。 在这个系列的博客里...
2012-11-19 16:13:00 111
转载 百度实习面经
百度实习面经 首先介绍下我的情况。我本不是计算机专业的,但是爱好计算机,以后也打算往互联网方向发展。 收到百度实习面试通知的第二天10:30在奎科大厦面试。 一面是一位跟我年纪差不多大的帅哥工程师。首先让我自我介绍了一下。惭愧的是我没有准备过自我介绍...
2012-11-08 14:30:00 94
转载 POJ 1111 Image Perimeters
POJ 1111 Image Perimeters 1. 写得最有逻辑的一道题了,10次讲座学的最好的就是DFS和BFS了。2. 直接深搜#include <iostream>#include <fstream>#include ...
2012-07-10 16:25:00 98
转载 POJ 1125 Stockbroker Grapevine
POJ 1125 Stockbroker Grapevine #include <iostream>#include <fstream>#include <string>#include <algorithm>...
2012-07-10 15:27:00 77
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人