题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1078 题意:每次仅仅能走 横着或竖着的 1~k 个格子。求最多能吃到的奶酪。 代码: #include <stdio.h> #include <ctime> #include <math.h> #inc ...
分类:
其他好文 时间:
2017-07-29 14:03:17
阅读次数:
120
本文参考 jvm参数设置大全:http://www.cnblogs.com/marcotan/p/4256885.html 堆内存分配及gc:http://www.cnblogs.com/weiguo21/p/5195460.html 在一个java应用启动时,我们可以配置其jvm的启动参数,如: ...
分类:
其他好文 时间:
2017-07-27 20:24:37
阅读次数:
225
二 threading模块 2.1 线程对象的创建 2.1.1 Thread类直接创建 import threading import time def countNum(n): # 定义某个线程要运行的函数 print("running on number:%s" %n) time.sleep(3 ...
分类:
编程语言 时间:
2017-07-19 20:34:39
阅读次数:
229
1 #!/usr/bin/python 2 #coding=utf-8 3 #服务器端 4 from socket import * 5 from time import ctime 6 7 HOST="192.168.1.33" 8 ADDR=1234 9 t=(HOST,ADDR) 10 11 ... ...
分类:
编程语言 时间:
2017-07-17 17:19:52
阅读次数:
233
1 #!/usr/bin/python 2 #coding=utf-8 3 #用于线程间通信,通过事件标识控制 4 import threading 5 from time import sleep,ctime 6 7 def A(): 8 print "A is starting" 9 event... ...
分类:
编程语言 时间:
2017-07-17 17:13:08
阅读次数:
175
1 #实现多任务在同一个线程切换 2 #!/usr/bin/python 3 4 from socket import * 5 from select import * 6 from time import ctime 7 8 sockob=socket(AF_INET,SOCK_STREAM) 9... ...
分类:
编程语言 时间:
2017-07-17 17:12:15
阅读次数:
203
1 #!/usr/bin/python 2 #coding=utf-8 3 #服务器端 4 from socket import * 5 from time import ctime 6 HOST="192.168.1.33" 7 PORT=1235 8 BUFSIZE=1024 9 ADDR=(H... ...
分类:
编程语言 时间:
2017-07-17 17:06:49
阅读次数:
208
1 #!/usr/bin/python 2 #coding=utf-8 3 from time import ctime,sleep 4 import threading 5 6 class Mythead(threading.Thread): 7 def __init__(self,func,ar... ...
分类:
编程语言 时间:
2017-07-17 17:05:51
阅读次数:
256
touch 作用:修改文件时间或者创建新文件 文件三个主要的变动时间 mtime 当文件的内容发生改变的时候,就会更新这个时间 ctime 当文件的权限与属性发生改变的时候,就会更新这个时间 atime 当文件被读取的时候,就会改变这个时间。 touch 文件名 创建一个新的文件。该文件的atime ...
分类:
其他好文 时间:
2017-07-15 18:53:36
阅读次数:
169