-
This is an implementation of Binary search tree.
This is an implementation of Binary search tree.
- 2023-06-22 12:25:03下载
- 积分:1
-
MFC串口代码
MFC串口调试代码,支持Unicode编码环境,异步接收方式。
- 2022-02-12 06:53:05下载
- 积分:1
-
Gsm 基于局域网络监控系统
< 跨度 style="font-size:12.0pt;line-height:150%;font-family:""> 今天,世界正在迅速变化的声明"我们是世界上"世界是在我们手中"。在信息和通信技术领域的快速增长是经历着今天的 worldwidephenomenon。在一项关切,计算机都组合在一起形成一个网络。管理和控制网络的活动,而办公室是一项容易的任务。但是,虽然我们都以外从站,去 fromoffice,我们怎么去关于监测和控制网络。而对第三方信息的 ofdepending,我们可以总是有我们手机作为服务器的目的。只需加载的项目,在我们的手机,随时随地登录应用并看看是谁在办公室或组织忙着什么。所以,这一项目的主要目的是为执行整个局域网网络的无线应用 throughwhich 在用简单的无线 handheldnetwork 的作品从任何地方不论距离监测。例如,我们在我们的组织有一个 LAN 设置。管理员可以将发送控制 commandslike 启动过程,从我们的手机,来控制整个 LANand 杀死进程接收所有的通知从 LAN。因此带来的这项由坐在家里或任何地方,如果我们想要知道的 LAN 地位的好处。我们可以通过在我们的手机中存储此项目和执行同过关。可以使用 LANmonitoring 使用 GSM 技术在办公室中,组织、 商场以及作为学院或大学水平也。此项目 isto 的主要目的向 theirmobile 电话管理员提供了最大详细信息网络,当管理员现在不在工作场所或从车站出来。
- 2022-04-06 14:40:58下载
- 积分:1
-
谁说windows的ASM不可以生成COM文件,用了这个库你就可以生成COM文件...
新接口源码,可以继承,但要注意语句
- 2022-07-27 12:46:14下载
- 积分:1
-
链表就地逆置 可以运行的程序
链表就地逆置 可以运行的程序-home run inverse procedures
- 2022-04-10 10:34:44下载
- 积分:1
-
CIPE源代码
CIPE源代码-CIPE source code.
- 2022-06-20 16:06:00下载
- 积分:1
-
三星s344b0x蜂鸣器测试/如果(关键= =)/ /如果(beepfreqlt;20000)/ beepfreq…
三星S344B0X蜂鸣器测试
// if(key== + )
// if(BeepFreq100)
// BeepFreq -=100
// SetBeepPwm(BeepFreq, 50)
// printf("Now beep frequence is %d
", BeepFreq)
// Delay(2000000)
// StopBeepPwm() -Samsung S344B0X buzzer testing// if (key ==)// if (BeepFreqlt; 20000)// BeepFreq = 100// if (key ==-)// if (BeepFreqgt; 100)// BeepFreq-= 100// SetBeepPwm (BeepFreq, 50)// printf ( "Now beep frequence is% d n", BeepFreq)// Delay (2000000)// StopBeepPwm ()
- 2022-07-08 17:03:10下载
- 积分:1
-
Not is to provide C/C++ programmer job interview guide, which aims to examinatio...
并不在于提供C/C++程序员求职面试指导,而旨在从技术上分析面试题的内涵。文中的大多数面试题来自各大论坛,部分试题解答也参考了网友的意见。
许多面试题看似简单,却需要深厚的基本功才能给出完美的解答。企业要求面试者写一个最简单的strcpy函数都可看出面试者在技术上究竟达到了怎样的程度,我们能真正写好一个strcpy函数吗?我们都觉得自己能,可是我们写出的strcpy很可能只能拿到10分中的2分。读者可从本文看到strcpy函数从2分到10分解答的例子,看看自己属于什么样的层次。此外,还有一些面试题考查面试者敏捷的思维能力。
分析这些面试题,本身包含很强的趣味性;而作为一名研发人员,通过对这些面试题的深入剖析则可进一步增强自身的内功。
-Not is to provide C/C++ programmer job interview guide, which aims to examination questions from a technical analysis of face connotations. Most of the text surface examination questions from the major forums, part of the answer in reference to the Questions User s views.
Many face examination questions seem simple, yet profound basic skills needed in order to give the perfect answer. Company asked interviewers to write a simple strcpy function of the interview can be seen in the technology of how to achieve the extent of what we can really written a strcpy function do? We all feel that you can, but we write the strcpy is likely to receive only 10 points in 2
- 2022-03-01 08:24:29下载
- 积分:1
-
用友U8 Ver8.5X的单据控件,包括例子程序
用友U8 Ver8.5X的单据控件,包括例子程序-UFIDA U8 Ver8.5X control documentation, including examples of procedures
- 2022-10-28 07:25:04下载
- 积分:1
-
进程是程序在一个数据集合上运行的过程,进程是并发进行的,也即系统中的多个进程轮流的占用处理器运行。
我们把若干个进程都能进行访问和修改的那些变量称为公共变...
进程是程序在一个数据集合上运行的过程,进程是并发进行的,也即系统中的多个进程轮流的占用处理器运行。
我们把若干个进程都能进行访问和修改的那些变量称为公共变量。由于进程是并发执行的,所以,如果对进程访问公共变量不加限制,那么就会产生“与时间有关”的错误,即进程执行后,所得到的结果与访问公共变量的时间有关。为了防止这类错误,系统必须要用同步机构来控制进程对公共变量的访问。一般说,同步机构是由若干条语句――同步原语――所组成。本试验要求学生模拟PV操作同步机构的实现,模拟进程的并发执行,了解进程并发执行时同步机构的作用。
-process is a procedure in the data set to run the process, the process is conducted with the system that is the rotation process more than the occupier runs. We have a number of process can visit and revision of those variables as public variables. As the process is complicated by the implementation, so if the right to visit public process variables without restrictions, it will have a "Time" is wrong, the implementation process, the results obtained with the public to visit the variables of time. To prevent such mistakes, the system must be used to control synchronization process bodies for public variables visit. In general, synchronous bodies of a number of statements-- synchronization primitives-- composed. Th
- 2023-01-24 21:05:04下载
- 积分:1