登录
首页 » c++ » 二叉查找树

二叉查找树

于 2022-08-14 发布 文件大小:2.43 MB
0 108
下载积分: 2 下载次数: 1

代码说明:

这是一个二进制搜索树搜索号码使用的 c + + 中的项目。你可以使用或修改如你所愿。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • STM32f107_PWM-2ch
    基于stm32f107vc的PWM 2路输出 控制电机 闭环调速 (Based stm32f107vc of PWM 2 output control loop speed control motor)
    2020-10-28 16:09:57下载
    积分:1
  • CDCDemo
    使用CDC类函数,实现绘图及文字输出的实例源码,很不错的vc源码,推荐!(Using the CDC class functions, graphics and text output to achieve an instance of source code, source code vc very good, recommended!)
    2011-08-26 20:54:06下载
    积分:1
  • mybutton
    自绘一个漂亮的按钮,,非常好用,漂亮。可以下载来用。(Since painting a beautiful button, very easy to use, beautiful.)
    2014-01-08 14:01:17下载
    积分:1
  • aorq
    以及针对SJA1000芯片的C语言编程,源代码使用在robot控制的一部分()
    2018-06-19 09:46:29下载
    积分:1
  • C# 制作系统服务 实例源码下载
    附件中有详细的安装使用文档,大概步骤如下:1.新建Windows项目,选择"Windows服务"类型的工程。2.生成的Program.cs文件中,定义了服务启动的Main函数。 代码 namespace WindowsService1{    static class Program    {        ///         /// 应用程序的主入口点。        ///         static void Main()        {            ServiceBase[] ServicesToRun;            ServicesToRun = new ServiceBase[]             {                 new Service1()             };            ServiceBase.Run(ServicesToRun);        }    }}  3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。 代码 namespace WindowsService1{    public partial class Service1 : ServiceBase    {        Timer timer;        public Service1()        {            InitializeComponent();        }        protected override void OnStart(string[] args)        {            timer = new Timer(1000);            timer.Elapsed  = new ElapsedEventHandler(timer_Elapsed);            timer.Start();        }        protected override void OnStop()        {            timer.Stop();            timer.Dispose();        }        void timer_Elapsed(object sender, ElapsedEventArgs e)        {            string filePath = AppDomain.CurrentDomain.BaseDirectory   "test.txt";            StreamWriter sw = null;            if (!File.Exists(filePath))            {                sw = File.CreateText(filePath);            }            else            {                sw = File.AppendText(filePath);            }            sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine);            sw.Close();        }    }}4.向工程中添加一个安装程序类。 4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。 代码 namespace WindowsService1{    partial class Installer1    {        ///         /// 必需的设计器变量。        ///         private System.ComponentModel.IContainer components = null;        private System.ServiceProcess.ServiceProcessInstaller spInstaller;        private System.ServiceProcess.ServiceInstaller sInstaller;        ///          /// 清理所有正在使用的资源。        ///         /// 如果应释放托管资源,为 true;否则为 false。        protected override void Dispose(bool disposing)        {            if (disposing && (components != null))            {                components.Dispose();            }            base.Dispose(disposing);        }        #region 组件设计器生成的代码        ///         /// 设计器支持所需的方法 - 不要        /// 使用代码编辑器修改此方法的内容。        ///         private void InitializeComponent()        {            components = new System.ComponentModel.Container();            // 创建ServiceProcessInstaller对象和ServiceInstaller对象            this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller();            this.sInstaller = new System.ServiceProcess.ServiceInstaller();            // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息            this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem;            this.spInstaller.Password = null;            this.spInstaller.Username = null;            // 设定服务的名称            this.sInstaller.ServiceName = "WindowsService1";            //设定服务启动的方式            this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic;            this.Installers.AddRange(new System.Configuration.Install.Installer[] {            this.spInstaller,this.sInstaller});        }        #endregion    }}5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:WindowsMicrosoft.NETFrameworkv4.0.30319InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。 6.启动该服务,这时打开binDebug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。7.停止服务的操作也和简单,打开命令行工具,转到C:WindowsMicrosoft.NETFrameworkv4.0.30319目录,然后执行InstallUtil.exe - u F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe命令就可以了。
    2015-04-21下载
    积分:1
  • NLPCA
    pca主成分分析,改进的pca程序源代码(pca principal component analysis, improved pca program source code)
    2020-09-18 15:47:55下载
    积分:1
  • 3.4.6
    单链表中的数据元素含有三种字符(字母、数字、其他字符),算法实现构造三个循环链表,是每个循环链表中只含有同一类字符,且利用原表中的结点空间作为这三个表的结点空间。(Singly linked lists of data element contains three characters (letters, Numbers and other characters), the algorithm constructs three circular linked list, each cycle list contains only the same type of character, and make use of the primary node space in a table as a node of the three table space.)
    2014-04-15 13:11:37下载
    积分:1
  • hbMS
    MFC编的数据库管理系统,ODBC连接SQL。里面用了列表控件,组合框控件等。实现管理数据库,直接在列表框控件中操作即可。(MFC series database management systems, ODBC connection SQL. They spent a list control, combo box controls. Implement management database directly in the ListBox control can operate.)
    2013-06-27 11:24:35下载
    积分:1
  • rdpwrap-1.6.2
    说明:  远程桌面源码可以直接运行,简单实用,远程连接速度快(Remote desktop source code can be run directly,Simple and practical, the remote connection speed is fast)
    2020-06-23 10:00:02下载
    积分:1
  • 学生信息管理系统
    这个系统是大学时期学c语言的时候做的大作业,可以用作参考,也可以修改一部分成为自己的东西,毕竟非常方便,这个东西不难,但是比较花时间,虽然做的不是特别好,用来参考还很管用的。
    2023-07-24 04:00:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载