搜索资源列表
SuperTimer
- 功能强大的计时器,可以实现多种增殖的功能.适用于范围更广的计时场合.
coutingsort
- 比快速排序更快的排序算法;这个了示例包含多种数据结构的算法,如InsertSort,ShellSort,BubbleSort,SelectSort,BinaryInsertSort,TableInsertSort,QuickSort,CoutingSort。对于每个算法用1万个数据比较排序性能,并且使用精确计时器(精度远远大于ms,到达us),使用正序,逆序,随机序列进行比较性能分析。
SIJTQ6tQ
- 利用一块芯片完成除时钟源、按键、扬声器和显示器(数码管)之外的所有数字电路功能。所有数字逻辑功能都在CPLD器件上用VHDL语言实现。这样设计具有体积小、设计周期短(设计过程中即可实现时序仿真)、调试方便、故障率低、修改升级容易等特点。 本设计采用自顶向下、混合输入方式(原理图输入—顶层文件连接和VHDL语言输入—各模块程序设计)实现数字钟的设计、下载和调试。 一、 功能说明 已完成功能 1. 完成秒/分/时的依次显示并正确计数; 2. 秒/分/时各段个位满10正确进位
新建 文本文档 (8)
- MP3播放器: 利用API函数[mciSendString]可以轻松实现MP3音乐文件的播放。下面这段程序实现了MP3播放的大部分常规操作,对其稍加修改,做一个100KB大小的MP3播放器轻而易举 启动VB程序,在窗体上放置6个命令按钮,三个标签,一个公用对话框、一个进度条、一个状态栏和一个计时器,窗本的布置请参考附图 按钮\"Open MP3 File\"是用来打开对话框选择MP3文件,其他5个按钮分别为Play(播放)、Pause(暂停)、Stopplay(停止播放)、Back(向后跳跃)、
shujujiegoukechengshiji
- 数据结构课程设计时,所需的封面及任务书版面,希望对大家有点用!
Calculator
- 计算器4*4键盘lcd显示,有计时功能,希望对大家有用
showtime
- 基本计时(12进制,有上下午标志)和时、分、秒的数字显示;能设置当前时间;打铃功能(整点报时,6:00及10:30闹铃:响5秒,停2秒,再响5秒)
gabor2.rar
- 指纹识别系统设计时gabor滤波的一段简单小程序,Fingerprint Identification System gabor filter design for a simple applet
timer
- vc++精确计时的程序代码示例,算出两次点击之间的精确时间差,程序稍加修改就能用到其它地方。 -vc++ code sample accurate timing of the procedure, calculate the precise time between two clicks difference, the program can be used in other places slightly modified.
matlabeightqueensquestion
- 该代码是用matalb实现的八皇后源代码,具体功能:可以用鼠标操作,共64个格子,用鼠标点击其中一个方块,其对角线和同一行列的格子都会变成红色,将为不可点击的状态,其中还有定时程序,显示出实现八皇后所用的时间,若实现了就会停止计时,若没有将会一直计时。可以实现重新开游戏功能和退出游戏功能。-The code is matalb Queen' s source code to achieve the eight specific functions: You can use the mous
myPI
- 计算指定位数的圆周率的C++程序,输入位数,计算的圆周率就可以输出到文件中,还有计时。-Calculation of pi-digit designation of the C++ program, enter the median, calculated pi can be output to a file, as well as time.
EX14
- 设置一个静态堆栈,编写它的基本操作后,在图类型设计时,构造一个最短路径矩阵和一个最短路径长度矩阵,使用FLOYD算法得出最短路径后,利用堆栈的性质输出最短路径和最短路径长度-Set up a static stack, the preparation of its basic operation, the type of design in the plan, construct a shortest path matrix and a shortest path length matrix,
paixu
- 实现了对于链式结构的冒泡法,选择法,插入法的排序,并且附带计时功能-Chain structure for the realization of the Bubble Act, selection, insertion sort, and attached to a time function
os2
- 设系统只有一个CPU,作业提交时间从0开始计时,第1个作业在时刻0提交,以后每隔一时间间隔(随机数)提交一作业。运行作业所需CPU时间也是随机数。试编一模拟程序,统计一个工作日 (8小时)内,作业从提交到完成的平均周转时间和系统的吞吐量(处理的作业数)。-Based system is only one CPU, the operating time from 0 to submit start running, the first operation at a time 0 submitted
os3
- 设系统有4个CPU并行处理提交(创建)的作业(进程)。作业(进程)的提交(创建)时刻从0开始计时,每隔一时间间隔(随机数)提交(创建)一作业(进程),作业(进程)运行需要的CPU时间也是一个随机数。每个CPU上有一就绪队列,提交(创建)的作业(进程)总是卦到长度最短的就绪队列上。试编一模拟程序统计一个工作日(8小时)内,作业(进程)的平均周转时间和系统的吞吐量(处理的作业(进程)数)。 -Based system has 4 CPU parallel processing to submit
calculator
- 数据结构实验练习--计时器,通过定义数组operand存放每个操作数,定义数组operate建立操作符集合,输入表达式得出结果。-Experimental data on the structure of practice- the timer, the array operand stored by defining the number of each operation, the definition of the array operate operator set up a colle
clock
- 1. 首先建立一个基本对话的exe工程,并命名为time; 2. 在BOOL CTimeDlg::OnInitDialog()函数内建立一个计时器,SetTimer(1,1000,NULL) 3. 再用classwizard建立消息响应函数void CTimeDlg::OnTimer(UINT nIDEvent),在里面输入代码如下:Invalidate() 4. 再用classwizard建立消息响应函数void CTimeDlg::OnDestroy(),在里面输入代码如下:
DataStructure_Algorithms
- 常用数据结构和算法的实现及测试。 1)数据结构包含:堆栈 队列 线性表 链表 2)算法包括:冒泡排序 选择排序 插入排序 希尔排序 归并排序 快排 堆排序 3)其他包括:随即数的产生 计时器的实现-Common data structures and algorithms implementation and testing. 1) The data structure includes: a linear table linked list stack queue 2) algor
Clock
- 计时器 可用于计时 非常常用Any changes made cards can be good results-Timer is used for timing
网络训练计时程序
- 能对所编写程序的运行时间进行检测,并将检测结果输出出来。(You can test the running time of the program and output the result.)