-
priority-queue
使用循环队列创建最小和最大优先队列,并使用堆排序方法去排序。(Using the circular queue to create the min and max priority queue, and using heap sort method to sort the queue.)
- 2013-09-21 23:18:49下载
- 积分:1
-
xiaoliulanqi
自已写的一个小浏览器,可以输入URL定位到网页也具备快进后退等(Can not miss more than two thousand cultural knowledge: to broaden our knowledge, a deeper understanding of the culture)
- 2010-10-11 19:54:12下载
- 积分:1
-
Csetofsourcecode
c++源码大集合,数值计算源码,非数值计算源码(c++ source large collection of numerical source code, non-numerical calculation of source)
- 2009-11-23 18:45:28下载
- 积分:1
-
matlabDIPUM-Toolbax-V1.1.3
文件整理了冈萨雷斯版Matlab例程的源代码,有用到的同学可以下载。(Filing the gonzalez version of Matlab routines source code, useful to the students can download.)
- 2014-08-24 11:01:09下载
- 积分:1
-
Delphi 下用 Intraweb 开发WEB程序应用实战
Delphi 下用 Intraweb 开发WEB程序应用实战-Delphi procedures under the WEB Application development with real Intraweb
- 2022-08-12 00:16:13下载
- 积分:1
-
AD9854
stm32控制as9854正交波形,仅供参考,自己琢磨。(stm32 control as9854 orthogonal waveforms, for reference, on her own.)
- 2014-04-17 20:07:26下载
- 积分:1
-
模式识别bayes分类的二类协方差VC ++程序
- 2022-04-02 06:13:20下载
- 积分:1
-
DrawLayout-V2
C#编写的用于实现交互式地震勘探生产任务书的制作(Written in C# for the realization of interactive seismic exploration and production task book production)
- 2013-10-30 15:07:26下载
- 积分:1
-
CafeBillingSystem_C#
说明: Module of Cafe Management System
- 2020-06-24 06:00:02下载
- 积分:1
-
C# 使用互斥量禁止程序运行两个实例
C# 使用互斥量禁止程序运行两个实例,这个主要是根据开发的程序使用环境决定,有时候一个程序运行多个副本,会浪费系统资源造成不稳定,但有人说这样会让软件使用更方便,以下代码是不让程序运行多个实例副本,关键代码如下所示:
private void Form1_Load(object sender, EventArgs e)
{//使用互斥量禁止程序运行两个实例
bool bExist;
var MyMutex =new System.Threading.Mutex(true, "OnlyOneTime", out bExist);
if (bExist)
MyMutex.ReleaseMutex();
else
{
MessageBox.Show("程序已经运行!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
}
- 2022-03-24 02:20:34下载
- 积分:1