-
binheap
Heap implementation in c
- 2010-11-19 16:02:51下载
- 积分:1
-
GeneralizedSoftMan
说明: 介绍广义软件人的概念及其发展趋势,“软件人”不仅具有无形、静态“软件人”的特征和功能,而且具有拟人外部和内部动态特征和功能,具有拟人的动态特性与行为。(Generalized Soft Man)
- 2010-03-26 17:47:43下载
- 积分:1
-
字符串加减.c
一段简单的代码实现字符串的加减, 可以用于编程练习(A piece of code which implements the addition and subtraction of a string)
- 2018-03-08 18:20:43下载
- 积分:1
-
CChartDll
CChart,国产精品数据可视化控件,基于Win32API,功能强大。网上已有系列教程,使用异常简单。(CChart, made quality data visualization controls, based on Win32API, and powerful. Existing series of tutorials online, very simple to use.)
- 2013-09-27 21:33:33下载
- 积分:1
-
实验2 蜂鸣器实验
说明: 正点原子STM32F103精英板蜂鸣器例程(Punctual Atom STM32F103 Elite Plate Buzzer Routine)
- 2020-06-21 11:00:02下载
- 积分:1
-
pair of thin film growth method magnetron sputtering process simulation, using t...
对薄膜生长的方法之一磁控溅射的过程模拟,采用蒙特卡罗方法。-pair of thin film growth method magnetron sputtering process simulation, using the Monte Carlo method.
- 2022-03-23 10:15:18下载
- 积分:1
-
projection
CT迭代重建算法中3维投影矩阵的生成算法,该算法对学习计算机断层层析成像很有帮助。(CT image reconstruction projection ,3D)
- 2012-10-26 23:46:42下载
- 积分:1
-
Character-code-tools
1.可以自动生成十六进制字编码。
2.可以自动C语言格式字符编码。
3.支持GBK和ASCII字符编码查询。(1 can automatically generate a hexadecimal character encoding.
2 can automatically format the C language character encoding.
3 support GBK and ASCII character encoding query.撤消修改)
- 2014-01-04 16:42:20下载
- 积分:1
-
C# 确定字符串末尾是否匹配指定子串
C# 确定字符串末尾是否匹配指定子串,本字符串查询实例具体到只匹配字符串开头和结尾是否有指定的字符串,下面是具体的查询代码编写方法:
private void button1_Click(object sender, EventArgs e)
{//确定字符串开头是否匹配指定子串
string MyFullInfo = "中华人民共和国";
string MyPartInfo="中华";
if(MyFullInfo.StartsWith(MyPartInfo))
MessageBox.Show(MyFullInfo + " 的开头是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
else
MessageBox.Show(MyFullInfo + " 的开头不是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
}
private void button2_Click(object sender, EventArgs e)
{//确定字符串末尾是否匹配指定子串
string MyFullInfo = "中华人民共和国";
string MyPartInfo = "共和国";
if (MyFullInfo.EndsWith(MyPartInfo))
MessageBox.Show(MyFullInfo + " 的末尾是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
else
MessageBox.Show(MyFullInfo + " 的末尾不是 " + MyPartInfo, "信息提示", MessageBoxButtons.OK);
}
- 2022-02-09 23:32:04下载
- 积分:1
-
自动售货机课设
题目名称:简易的自动售货机
(1)设计简易售货机,物品架1和2上共有10样商品,按顺序进行编号1—10,标有价格与名称。
(2)用户可以一次投入较多钱币(支持1元、2元、5元、10元),
并可以选择多样商品,售货机可以一次性将商品输出并找零钱。
注:
(3)输入的数据第1行是投入售货机的钱币序列,第2行为购买商品编号序列,序列输入均已-1结束。
(4)同时,假定物品架上的物品数量固定,当被用户选走一次,数量会减1。
(5)请对每样物品数量做个限制,用户选物品时,如果物品数量为0,则提示该用户不能选取该物品。
- 2023-03-25 01:00:04下载
- 积分:1