搜索资源列表
SIJTQ6tQ
- 利用一块芯片完成除时钟源、按键、扬声器和显示器(数码管)之外的所有数字电路功能。所有数字逻辑功能都在CPLD器件上用VHDL语言实现。这样设计具有体积小、设计周期短(设计过程中即可实现时序仿真)、调试方便、故障率低、修改升级容易等特点。 本设计采用自顶向下、混合输入方式(原理图输入—顶层文件连接和VHDL语言输入—各模块程序设计)实现数字钟的设计、下载和调试。 一、 功能说明 已完成功能 1. 完成秒/分/时的依次显示并正确计数; 2. 秒/分/时各段个位满10正确进位
Sort
- 快速排序、合并排序、插入排序、堆排序、计数排序等算法的C语言实现
数据结构的C++描述
- 目 录 译者序 前言 第一部分 预备知识 第1章 C++程序设计 1 1.1 引言 1 1.2 函数与参数 2 1.2.1 传值参数 2 1.2.2 模板函数 3 1.2.3 引用参数 3 1.2.4 常量引用参数 4 1.2.5 返回值 4 1.2.6 递归函数 5 1.3 动态存储分配
123
- c语言常用算法,包括排序、判断、计数等各种常用算法-c language commonly used algorithms, including sorting, judging, counting and other commonly used algorithms
rainflow
- 雨流计数法C++编程实现,由长安大学原创的,用C++实现编程,我试过了,挺有用的-The rearlizing of rainflow by C++
counters
- 用来进行英文词汇的计数,C++ 语言编写。-used for counting English words. coded by c plus plus
cell-count
- 本程序使用C语言进行编程,实现对血液当中红细胞的计数功能。附有资料及应用程序。很有借鉴意义。-This program USES C programming language, to achieve the count function of blood red, With material and application.It is of great significance
Lab1
- C++编程实例 //Lab1 追赶法求解三对角方程 //要求:输出结果用科学计数法表示,小数点后保留8位有效数字 //作者:于涛 //学号:GS1003217 //时间:2011年7月9日-C++ programming examples// Lab1 catch method for solving tridiagonal equations// requirements: the output of scientific notation, decimal to ret
Lab2
- C++编程实例 //Lab2 迭代法求非线性方程数值分析课本P.93,习题#5 //要求:输出结果用科学计数法表示,小数点后保留8位有效数字 //作者:于涛 //学号:GS1003217 //时间:2011年7月9日-C++ programming examples// Lab2 iterative method for the numerical analysis of nonlinear equations textbooks P.93, Exercise# 5// r
Lab3
- C++编程实例 Lab3 曲线拟合数值分析课本 P.148,习题#42 要求:输出结果用科学计数法表示,小数点后保留8位有效数字 作者:于涛 学号:GS1003217 时间:2011年7月9日-C++ programming examples Lab3 curve-fitting numerical analysis textbook P.148, Problem# 42 requires: the output of scientific notation, decima
Lab4
- C++编程实例 Lab4 区间逐次分半的复化梯形公式计算积分,数值分析课本P.178,习题#11 要求:输出结果用科学计数法表示,小数点后保留8位有效数字 作者:于涛 学号:GS1003217 时间:2011年7月9日-C++ programming examples Lab4 successive half of the complex range of trapezoidal integration formula, numerical analysis textboo
AutoMemory
- C++中的自动内存管理。利用的是smart pointer,通过引用计数,将垃圾自动处理。这只是一个简单的处理。-C++, automatic memory management. Use the smart pointer, by reference counting, garbage automatically. This is just a simple process.
scientific_calculator
- 使用说明: 1、该计算器对表达式的要求比较严格 2、该计算器默认采用弧度制,计算角度时则要转换:sin(π/6)=0.5 3、括号必须要匹配 4、注意像And这样的运算,前后数值需要括号:(1011)And(1000) 其他说明: Backspace :删除当前输入的最后一位。 CE :清除当前显示的表达式。 C :清除当前的计算,开始新的计算。 MC :清除存储器中的数据。 MR:调用存储器中的数据。 Mod求模(即整数相除求余数)
555555
- 进制数制是人们利用符号进行计数的科学方法。数制有很多种,在计算机中常用的数制有:十进制,二进制、八进制和十六进制。十六进制数有两个基本特点:它由十六个字符0~9以及A,B,C,D,E,F组成(它们分别表示十进制数0~15),十六进制数运算规律是逢十六进一,例如:十六进制数4AC8可写成(4AC8)16,或写成4AC8H。 要求: -Binary number system is that people use scientific methods of counting symbols
counter
- 用C++语言设计一个计数器。实现和差计数的功能。-In C++ language design a counter. Count and differential function.
pointers-on-c
- 一些用C语言写的指针实例。包括了排序,组合,计数,函数调用,键盘消息等各种应用指针的例子。-Written in C language pointer instance. Including sorting, combinations, counting, function calls, pointer example of a variety of applications such as keyboard messages.
algorithm1111
- 冒泡排序 桶排序 计数排序 堆排序 二分插入排序 c语言实现多种算法-Bubble sort bucket sort counting sort heap sort two insertion sort C language to achieve a variety of algorithm
C8051F021
- 用c8051f02x或041实现的具有计数分频功能程序,用c语言编程,易懂,欢迎下载-With c8051f02x or 041 to achieve with the counting Divide function program, with the c programming language, understandable, welcome to download
Rain20120423
- Visual c++6.0实现的雨流计数法源程序RainFlow-RainFlow, Visual c++6.0
QuickSort
- 改进的基于c++的快速排序算法排序算法大体可分为两种: 一种是比较排序,时间复杂度O(nlogn) ~ O(n^2),主要有:冒泡排序,选择排序,插入排序,归并排序,堆排序,快速排序等。 另一种是非比较排序,时间复杂度可以达到O(n),主要有:计数排序,基数排序,桶排序等。(Improved fast sorting algorithm based on C ++)
