码迷,mamicode.com
首页 >  
搜索关键字:art    ( 45817个结果
哈希小demo hashCode取模
package demo; import java.util.ArrayList; import java.util.List; class Person { private String username; private int age; public String getUsername() { return username; } public void setUsern...
分类:其他好文   时间:2014-08-07 09:48:19    阅读次数:367
Linux守护进程的编程实现
Linux 守护进程的编程方法 守护进程(Daemon)是执行在后台的一种特殊进程。它独立于控制终端而且周期性地执行某种任务或等待处理某些发生的事件。守护进程是一种非常实用的进程。Linux的大多数server就是用守护进程实现的。比方,Internetserverinetd,Webserverht...
分类:系统相关   时间:2014-08-07 09:43:39    阅读次数:285
hdu String Problem(最小表示法入门题)
hdu 3374 String Problem 最小表示法 view code#include #include #include #include #include #include using namespace std; const int N = 10010; int n; char s[1...
分类:其他好文   时间:2014-08-07 09:42:19    阅读次数:145
window批处理-5 start
作用 重新启动一个单独窗口,在新窗口中执行命令 格式 start [/w] FileName demo bat: @echo off echo 在新窗口中打开txt文件,并等待新窗口正常退出(exit)再往下执行 start /wait type hello.txt pause hello.txt hello world!!! 结果...
分类:Windows程序   时间:2014-08-07 07:16:09    阅读次数:283
Decode Ways leetcode java
题目:A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message....
分类:编程语言   时间:2014-08-07 05:11:09    阅读次数:247
Interleaving String leetcode java
题目:Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2.For example,Given:s1 = "aabcc",s2 = "dbbca",When s3 = "aadbbcbcac", r....
分类:编程语言   时间:2014-08-07 03:05:38    阅读次数:291
form_tag
class SwitchesController [:index, :show] def index end def show end #存储拓扑 def topo @vts = VmToSwitch.all @sts = SwitchToSwitch.all @st...
分类:其他好文   时间:2014-08-07 03:05:28    阅读次数:269
HTML5 Canvas核心技术—图形、动画与游戏开发.pdf3
路径与子路径在某一时刻,canvas之中只能有一条路径存在,Canvas规范称之为“当前路径”(current path),这条路径却可以包含很多子路径(subpath),子路径是由两个或者更多点组成的context.beginPath();context.rect(10,10,100,100);c...
分类:Web程序   时间:2014-08-07 03:01:48    阅读次数:285
C#中List的Find方法的使用
查找List中的某个值,可以使用循环遍历对比,查找出结果。C#中提供了Find方法,可以直接使用,只要查找条件传入就可。如下:public class RecordInfo { private string recordID = string.Empty; ...
分类:其他好文   时间:2014-08-07 02:59:38    阅读次数:335
Regex.Replace的基本用法
Regex构造函数Regex(string pattern)Regex(string pattern,RegexOptions options)参数说明pattern:要匹配的正则表达式模式options:指定是否要编译,忽略大小写等等Regex.Replace方法-C#Regex.Replace(...
分类:其他好文   时间:2014-08-07 02:56:58    阅读次数:549
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!