按类别查询搜索结果
关于关键词 的检测结果,共 438
sunjiangang-ok | 2011-10-18 09:02:09 | 阅读(1348) | 评论(0)
yaoshiyan | 2011-10-16 17:55:14 | 阅读(776) | 评论(0)
【Python/Ruby】 bash的数值运
ly21st | 2011-10-14 09:11:34 | 阅读(200) | 评论(0)
#!/bin/bash# Scriptname: numnum=0    # Initialize numwhile (( $num < 10 ))   # or  while [ num -lt 10 ]do  echo  -n "$num " let num+=1           # Increment num,the same as (( num=num+1 )) or (( n...【阅读全文】
ly21st | 2011-10-13 14:05:04 | 阅读(710) | 评论(0)
#!/bin/ksh# Program name: numberit# Put line numbers on all lines of memoif (( $# < 1 ))then print "Usage: $0 filename " >&2 exit 1fiinteger count=1              # Initialize countcat $1 | while read line &nbs...【阅读全文】
ly21st | 2011-10-12 23:34:25 | 阅读(1990) | 评论(0)
#!/bin/csh -fset num = 0while ($num < 10) echo $num @ num++        # See arithmetic. endecho "Program continues here"【阅读全文】
yueming | 2011-10-11 16:54:46 | 阅读(2423) | 评论(0)
【Python/Ruby】 背包问题的递归
niexining | 2011-10-06 23:29:29 | 阅读(3087) | 评论(0)
题目的意思是: 有若干物品 w1,w2,w3...,装进一个背包,需要装入重量恰好w,用递归算法,语言不限。 一些人贴出了代码,有java的,有c的,但没有人讲一下他的代码的思路。 我这里把大概思路说一下:【阅读全文】
stonemason | 2011-10-04 17:29:24 | 阅读(743) | 评论(0)
freearth | 2011-09-25 18:43:27 | 阅读(2308) | 评论(0)
liurhyme | 2011-09-24 08:46:48 | 阅读(943) | 评论(0)
【Python/Ruby】 jvm的YGC和FGC
tjpm | 2011-09-23 00:12:08 | 阅读(10284) | 评论(0)
【Python/Ruby】 Python 的应用
spanthrive | 2011-09-22 15:03:58 | 阅读(0) | 评论(0)
【Python/Ruby】 在线调查表设方略
| 2011-09-21 12:51:14 | 阅读(377) | 评论(0)
javavsnet | 2011-09-14 13:46:54 | 阅读(4757) | 评论(0)
fjzhuozl | 2011-09-06 15:24:01 | 阅读(4043) | 评论(0)
xx6an612 | 2011-09-03 01:48:03 | 阅读(232) | 评论(0)
| 2011-08-28 19:21:38 | 阅读(147) | 评论(0)
【Python/Ruby】 【perl】统学模块
mystérieux | 2011-08-26 21:35:31 | 阅读(3027) | 评论(0)
【Python/Ruby】 法的理解
niao5929 | 2011-08-25 21:30:59 | 阅读(1204) | 评论(0)
【Python/Ruby】 Python实现图转置
Jesse90 | 2011-08-16 20:52:58 | 阅读(2084) | 评论(0)