码迷,mamicode.com
首页 > 2014年07月19日 > 全部分享
[LeetCode] Gas Station
There are N gas stations along a circular route, where the amount of gas at station i is gas[i].You have a car with an unlimited gas tank and it costs...
分类:其他好文   时间:2014-07-19 20:35:13    阅读次数:202
线性移不变系统
线性,称系统具有线性,如果:Y1(t) = F{ X1(t) }Y2(t) = F{ X2(t) }且对于任意的常数a, b都有:aY1(t) + bY2(t) = F{ aX1(t) + bX2(t) }移不变(Shift Invariance)系统:假设,对某线性系统有:X(t)——〉Y(t)现...
分类:其他好文   时间:2014-07-19 20:35:54    阅读次数:275
[leetcode]Count and Say
Count and SayThe count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is r...
分类:其他好文   时间:2014-07-19 20:35:34    阅读次数:276
不同字的练习
#import "FisrtViewController.h"#import "ViewController.h"@interface FisrtViewController ()@end@implementation FisrtViewController- (instancetype)initW...
分类:其他好文   时间:2014-07-19 20:36:37    阅读次数:337
LA 4490
Bubu's bookshelf is in a mess! Help him!There arenbooks on his bookshelf. We define the mess value to be the number of segments ofconsecutive equal-he...
分类:其他好文   时间:2014-07-19 20:36:17    阅读次数:248
LogEntry
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace WindowsFormsApplication3.Model{ public class LogEntry ...
分类:其他好文   时间:2014-07-19 20:37:00    阅读次数:177
ZigBee
ZigBee is a specification for a suite of high level communication protocols used to create personal area networks built from small, low-power digital ...
分类:其他好文   时间:2014-07-19 20:37:21    阅读次数:212
SQL Server 2008 R2 错误代码:233
解决方法:打开SQL Server配置管理器,找到MSSQLSERVER的协议,启动TCP/IP和Named Pipes
分类:数据库   时间:2014-07-19 20:38:04    阅读次数:305
【python】正则表达式
在python中,所有和正则表达式相关的功能都包含在re模块中。$表示字符串的末尾,^表示字符串的开始,原始字符串:字符串添加前缀r,表示字符串中的所有字符都不转义。\b表示单词的边界必须在这里。s="100 BROAD"re.sub('ROAD$','RD',s)结果:'100 BRD're.su...
分类:编程语言   时间:2014-07-19 20:38:28    阅读次数:233
Java SE 6 新特性: HTTP 增强--转
概述Java 语言从诞生的那天起,就非常注重网络编程方面的应用。随着互联网应用的飞速发展,Java 的基础类库也不断地对网络相关的 API 进行加强和扩展。在 Java SE 6 当中,围绕着 HTTP 协议出现了很多实用的新特性:NTLM 认证提供了一种 Window 平台下较为安全的认证机制;J...
分类:编程语言   时间:2014-07-19 20:38:48    阅读次数:305
Node Node
http://www.nodejs.org/http://outofmemory.cn/code-snippet/1403/node-javascript-classic-introduction-HTTP-service-qi-codehttp://outofmemory.cn/code-snip...
分类:其他好文   时间:2014-07-19 20:39:22    阅读次数:217
linux下的g++编译器安装
再debian下直接apt-get install gcc g++就能够了。依照类似的逻辑,再Fedora下yum install gcc g++ 报告无法找到g++包。查了一下,原来这个包的名字叫做gcc-c++。完整的应该是yum install gcc gcc-c++。注意安装时要先成为roo...
分类:系统相关   时间:2014-07-19 20:39:02    阅读次数:267
Android平台 Runtime.getRuntime().exec
import java.io.DataInputStream;import java.io.DataOutputStream;import java.io.IOException;public class RootCmd { private static boolean mHaveRoot =...
分类:移动开发   时间:2014-07-19 20:39:46    阅读次数:282
linux_后台启动多个java -jar 程序,及关闭
启动脚本startup.sh#!/bin/bashx=$(($1))while (($x>0))do java -jar /home/chenpenghui/crawler/crawler-hb/StartUpIp.jar & sleep 3 x=$(($x-1))done线程数 ...
分类:编程语言   时间:2014-07-19 21:00:09    阅读次数:273
String,你到底创建了几个对象????
Java代码 Stringstr=newString("aaa");这行代码究竟创建了几个String对象呢?答案是2个,而不是3个。由于 new String("aaa")相当于"aaa"与一个就是创建出来的放在堆时原实例对象,而另一个就是放在常量池中的 "aaa" 对象,当然这里的str本身只是...
分类:其他好文   时间:2014-07-19 21:00:30    阅读次数:221
php空白页
使用dvwa测试,安装了httpd MySQL php 发现 phpinfo 可以解析,但是dvwa的大部分php页显示不了,调试发现时数据库出错,所以显示不了,@错误抑制:不显示错误信息, 所以不会打印出错信息最后将php-mysql库安装好了 就行注意要配置php.ini文件,重启http服务。
分类:Web程序   时间:2014-07-19 21:01:14    阅读次数:320
杭电 acm 2053 ( Switch Game )
这题思路:一开始有n盏灯,且全部为关闭状态,都记为 0 就是 The initial condition : 0 0 0 0 0 …然后之后进行i操作就是对这些灯以是否能被i整除,进行改变状态,如将 0 改为 1 或 将 1 改为 0正如提醒里的After the first operation :...
分类:其他好文   时间:2014-07-19 21:00:51    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!