资源列表
RunFileDlg_src
- 一个演示如何通过windows shell编程实现显示windows开始菜单的“运行”对话框-a demonstration of how the windows shell programming windows began to show vegetables the single "Run" dialog
api32_createfile
- create file visual basic in API 32
clock
- windows API应用 纯C 指针时钟显示系统时间
msprodkey
- code to detect ms office key
VB.take.lens.color.high.level.code
- VB透镜像素点取色高级代码VB to take lens color pixel high-level code -VB to take lens color pixel high-level code
克隆删除任意用户(RingZ_CDUser)
- 克隆删除任意用户(RingZ_CDUser)-cloning delete arbitrary user (RingZ_CDUser)
par_ou_impar200706102413
- show number par or impar
data-structure-operations
- 输入10个整数,将其中最小的数与第一个对换,最大的数与最后一个对换。写出三个自定义函数:输入十个数进行处理,数出十个数。-Input 10 integers, which will be the smallest number with the first on the exchange, the largest number and the last one on the exchange. Name three custom function: Enter the number of pro
jiaoliudianji
- 交流电机仿真作业,关于异步电机启动的仿真程序-AC motor simulation jobs,homework,Asynchronous motor start emulator
CSharp
- C#图片查看器,包括旋转,预览,下一张上一张-C#How to realize the picture viewer
ini-File-Access-class
- Windows程序使用INI文件保存配置信息,本代码包是一个封装好的C++ INI文件操作类,非常好用-Windows uses the INI file to save the configuration information, the code package is a good package C++ INI file manipulation class, very easy to use
4
- 通过扩展已实现的基本数据结构,模拟更为复杂的数据结构,是一种常见而实用的技巧。这里,我们将利用栈结构,来模拟一种功能增强的队列。 具体来说,你必须首先实现一个元素类型为int的栈,该栈能且只能支持以下操作接口: bool empty() //判断是否栈空 void push(int) //向栈中压入一个整数 int pop() //弹出栈顶元素,并返回其数值 int top() //仅获取栈顶元素的值,但不弹出 接下来,你必须借助以上栈结构,