码迷,mamicode.com
首页 > 2015年03月15日 > 全部分享
python filecmp标准库基础学习
#-*-coding:utf-8-*-#作者:新手__author__='Administrator'#文件的比较importos,filecmp#作用用于比较系统中的目录和文件#例子2defmkfile(name,body=None):withopen(name,'w')asname1:name1...
分类:编程语言   时间:2015-03-15 00:40:10    阅读次数:293
(简单) POJ 2253 Frogger,Dijkstra。
Description Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who is sitting on another stone. He plans to ...
分类:其他好文   时间:2015-03-15 00:37:42    阅读次数:154
wolire
haha
分类:其他好文   时间:2015-03-15 00:38:16    阅读次数:121
MVCWebapi
WEBAPI:仅仅提供了一个轻量级的Http请求响应框架 返回的结果在MVCWebapi中有两种:1,xml 2,json3、MVC WebApi 1、webapi的路由规则注册在App_Start\WebApiConfig.cs文件中 2、webapi控制器继承父类 apiController 3...
分类:Windows程序   时间:2015-03-15 00:39:35    阅读次数:1799
javascript基础
基本类型的值和引用类型值 基本类型:string number boolean null Undefined 引用类型:内存中的对象 动态的属性:1 var Person = new Object();2 Person.name = "js";3 ...
分类:编程语言   时间:2015-03-15 00:37:32    阅读次数:195
网站防刷方案 -摘自网络
1.访问网站所涉及环节简单说就是重复相同的请求首先看看访问流程所设计的每个环节User -> Browse -> CDN/Proxy Cache -> Web Server -> App Server / fastcgi pool -> Cache -> Database大部分网站都是这样的结构:用...
分类:Web程序   时间:2015-03-15 00:38:46    阅读次数:191
C++拾遗(七)——关联容器
关联容器(Associativecontainers)支持通过键来高效地查找和读取元素。两个基本的关联容器类型是map和set。map的元素以键-值(key-value)对的形式组织:键用作元素在map中的索引,而值则表示所存储和读取的数据。set仅包含一个键,并有效地支持关于某个键是否存在的查.....
分类:编程语言   时间:2015-03-15 00:39:35    阅读次数:276
(024) Linux之编译程序
十年运维系列之基础篇 - Linux作者:曾林联系:1494445739@qq.com网站:www.jplatformx.com版权:文章未经同意请勿转载一、引言 本章将介绍如何通过源代码来生成可执行程序。开放源代码是Linux自由开源的必要因素,整个Linux系统的开发依赖于开发人员之间的自由.....
分类:系统相关   时间:2015-03-15 00:38:52    阅读次数:188
---纯Swift的中SQLite 的使用
SQLite.swift 是一个使用纯 Swift 语言封装 SQLite3 的操作框架。特性:简单的查询和参数绑定接口安全、自动类型数据访问隐式提交和回滚接口开发者友好的错误处理和调试文档完善通过广泛测试 示范代码:import Foundation/** 1. 打开数据库 2. 如...
分类:数据库   时间:2015-03-15 00:36:52    阅读次数:184
Android更新UI的五种方式
handler.postactivity.runOnUiThreadview.posthandler+ThreadAsyncTask例子:package com.chao.updateui;import org.apache.http.HttpResponse;import org.apache.h...
分类:移动开发   时间:2015-03-15 00:37:36    阅读次数:156
(简单) POJ 2387 Til the Cows Come Home,Dijkstra。
Description Bessie is out in the field and wants to get back to the barn to get as much sleep as possible before Farmer John wakes her for the mor...
分类:其他好文   时间:2015-03-15 00:38:21    阅读次数:195
poj2778DNA Sequence (AC自动机+矩阵快速幂)
转载请注明出处:http://www.cnblogs.com/fraud/ ——by fraudDNA SequenceTime Limit: 1000MSMemory Limit: 65536KDescriptionIt's well known that DNA Sequence is a se...
分类:其他好文   时间:2015-03-15 00:37:31    阅读次数:184
Ubuntu下配置Sublime到Dash board 以及 VI/VIM编辑文件时无权限保存的问题
【1】Ubuntu下配置Sublime到Dash boardUbuntu是个好系统,Sublime Text 是个好编辑器。下载&安装个人习惯喜欢到官网下载软件,http://www.sublimetext.com/2选择合适的包下载回来的格式是.tar.bz2格式,需要进行解压。1. 解压:tar...
分类:系统相关   时间:2015-03-15 00:35:20    阅读次数:2112
(简单) POJ 2502 Subway,Dijkstra。
Description You have just moved from a quiet Waterloo neighbourhood to a big, noisy city. Instead of getting to ride your bike to school every day...
分类:其他好文   时间:2015-03-15 00:37:38    阅读次数:184
LeetCode-87 Scramble String
Given a strings1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible representation...
分类:其他好文   时间:2015-03-15 00:36:38    阅读次数:159
100个经典的C算法
1.题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?#include#includeint functionsum(int n){ if(n==1||n==2)return 1; else r...
分类:编程语言   时间:2015-03-15 00:34:59    阅读次数:214
AC自动机
给定n个模式串在主串中出现了几个#include #include const int MAXPT=500007; //最大节点数const int size=26; //子节点数const char start='a'; //子节点标号对应关系 class Ac_Automat{pr...
分类:其他好文   时间:2015-03-15 00:35:39    阅读次数:162
1702条   上一页 1 ... 94 95 96 97 98 99 100 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!