-
LargeIntegerOperation
数制转换和运算方法。用Java语言编写一个十六进制大数运算程序
(Number system conversion and computing methods. Java language using a hexadecimal calculation procedures of large numbers)
- 2009-06-30 13:13:32下载
- 积分:1
-
Hotel
酒店订单管理系统,毕业设计,JSP/mysql(Hotel order management system, school design, JSP/mysql)
- 2009-05-13 10:48:28下载
- 积分:1
-
Ubuntu12.10 菜鸟使用手册(二)
说明: 对于刚刚步入 Linux 的菜鸟来说, 难免要有时利用一下 的资源,(For newcomers who have just entered Linux, it is unavoidable to make use of some resources at times.)
- 2019-05-07 23:25:35下载
- 积分:1
-
CONGA
重叠社区发现算法CONGA的源程序,JAVA下的jar包,调试即可使用。(Source program of overlaping community detection algorithm.)
- 2020-12-15 17:39:13下载
- 积分:1
-
kplk
说明: 一款一个益智类的手机游戏源码,可自己进行编译生成相应的安装文件(A puzzle class of mobile game source code, can be compiled to generate the corresponding installation files.)
- 2019-03-25 21:07:27下载
- 积分:1
-
AgsFlexDemo
arcgis for flex的demo!(arcgis for flex demo!)
- 2012-11-09 14:35:45下载
- 积分:1
-
KeyguardViewProperties
Simple inflate/deflate test, taken from the reference docs for the Inflater/Deflater classes.
- 2014-02-27 15:59:08下载
- 积分:1
-
jenainf
这个是用protege建立的本体实例。
可用于语义推理。(This is the ontology instances created with protege. Can be used for semantic reasoning.)
- 2014-02-12 16:49:37下载
- 积分:1
-
MyMicro-channel
本软件基本实现微信的所有UI效果。具备如下功能点:
登录、功能指引、退出对话框、设置界面、会话界面、右上角功能键、详细资料头像点击放大效果、摇一摇
摇一摇判断“shake”部分来源于网络,具体地址忘了。。。。摇一摇的动画效果是我做的,支持真机摇一摇哦!
新特点:主界面使用的是viewpager 支持手势也支持底部图标点击!(比原版微信tabhost强多了!)
效果图:(The software basically all the UI micro-channel effects. Have the following functions:
Login, functional guidelines, exit the dialog box, set the interface, session interface, top right function key, detailed information Picture Click to enlarge effects, Shake
Shake judgment "shake" section from the network, the specific address forgotten. . . . Shake animation is what I do to support the real machine shake Oh!
New features: The main interface using viewpager support gestures are also supported at the bottom of the icon click! (Stronger than the original micro-channel tabhost more!)
Effect diagram:)
- 2013-11-07 10:57:03下载
- 积分:1
-
Process
java进程调度(优先级)进程调度算法:采用最高优先数优先的调度算法(即把处理机分配给优先数最高的进程)和先来先服务算法。每个进程有一个进程控制块( PCB)表示。进程控制块可以包含如下信息:进程名、优先数、到达时间、需要运行时间、已用CPU时间、进程状态等等。
进程的优先数及需要的运行时间可以事先人为地指定(也可以由随机数产生)。进程的到达时间为进程输入的时间。进程的运行时间以时间片为单位进行计算。每个进程的状态可以是就绪
W(Wait)、运行R(Run)、或完成F(Finish)三种状态之一。就绪进程获得
CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。如果运行一个时间片后,进程的已占用
CPU时间已达到所需要的运行时间,则撤消该进程,如果运行一个时间片后进程的已占用CPU时间还未达所需要的运行时间,也就是进程还需要继续运行,此时应将进程的优先数减1(即降低一级),然后把它插入就绪队列等待CPU。每进行一次调度程序都打印一次运行进程、就绪队列、以及各个进程的
PCB,以便进行检查。 (Java process scheduling)
- 2018-11-29 23:13:42下载
- 积分:1