-
aodv96
说明: AODV路由协议96版,使用Ubuntu平台实现(AODV routing protocol version 96, using the Ubuntu platform)
- 2021-01-04 16:51:10下载
- 积分:1
-
elfp
linux elf的加壳工具,需要的可以参考参考(linux elf packers tools need to refer to the reference)
- 2013-08-27 19:14:35下载
- 积分:1
-
ECE133-EXP1
this is a matlab program for a feedback and control systems laboratory subject
- 2012-11-06 22:09:31下载
- 积分:1
-
hufman
霍夫曼编码,随机生成10个概率,和为1,用霍夫曼编码输出,采用map函数(Huffman coding, the probability of a randomly generated 10, and 1, with the Huffman code output, the use of map functions)
- 2010-12-07 22:17:00下载
- 积分:1
-
问题的提出:我们在编制程序时,经常要用到清屏处理,如dos下的cls,Turbo C下的clrscr()等都具有清屏功能,但这些均为一般意义的清屏,并未显示其清...
问题的提出:我们在编制程序时,经常要用到清屏处理,如dos下的cls,Turbo C下的clrscr()等都具有清屏功能,但这些均为一般意义的清屏,并未显示其清屏规律.而有时为了达到清屏的艺术美观,往往对清屏有一些具体要求,如:开幕清屏 闭幕清屏 上清屏 下清屏 中清屏.为此,这里用C语言编制了几个子函数,用于程序中时,既可达到清屏的目的,有能增加屏幕的艺术美观.-the problem : we in the preparation of procedures, regular use of the screen, such as the dos cls, Turbo C under the clrscr () so with the screen, but these are general sense of the screen does not show the screen law. And sometimes in order to achieve the screen beauty of art often on the screen that there are some specific requirements, such as : opening screen closing supernatant Ping-ping-ping under which the screen. To that end, here with C language several Functions for the procedure, can achieve the purpose of the screen, the screen will increase the artistic aesthetic.
- 2022-12-28 08:50:03下载
- 积分:1
-
BCHSDemo
BlueTooth Host Software HandFree相关的lib/app/demo源码(HandFree related lib/app/demo FOSS)
- 2007-04-17 14:05:40下载
- 积分:1
-
GATE-UsersGuideV8.0.pdf
说明: gate8.0说明书,在医学影像模拟方面有重要作用(Gate8.0 instructions plays an important role in medical image simulation.)
- 2019-10-31 18:44:57下载
- 积分:1
-
C# 指定主机和端口发消息的实现
Visual C# 指定主机和端口发消息的实现例子,支持和远程主机发送消息,本例子可学习到很多实用的网络方法的用法,以下代码是本功能的核心实现:
richTextBox1.Text = string.Empty;
//实例化UdpClient对象
UdpClient udpclient = new UdpClient(Convert.ToInt32(textBox2.Text));
//调用UdpClient对象的Connect建立默认远程主机
udpclient.Connect(textBox1.Text, Convert.ToInt32(textBox2.Text));
//定义一个字节数组,用来存放发送到远程主机的信息
Byte[] sendBytes = Encoding.Default.GetBytes(textBox3.Text);
//调用UdpClient对象的Send方法将Udp数据报发送到远程主机
udpclient.Send(sendBytes, sendBytes.Length);
//实例化IPEndPoint对象,用来显示响应主机的标识
IPEndPoint ipendpoint = new IPEndPoint(IPAddress.Any, 0);
//调用UdpClient对象的Receive方法获得从远程主机返回的Udp数据报
Byte[] receiveBytes = udpclient.Receive(ref ipendpoint);
//将获得的Udp数据报转换为字符串形式
string returnData = Encoding.Default.GetString(receiveBytes);
richTextBox1.Text = "接收到的信息:" + returnData.ToString();
//使用IPEndPoint对象的Address和Port属性获得响应主机的IP地址和端口号
richTextBox1.Text += "
这条信息来自主机" + ipendpoint.Address.ToString()
+ "上的" + ipendpoint.Port.ToString() + "端口";
//关闭UdpClient连接
- 2022-02-10 10:21:19下载
- 积分:1
-
GUI_shenjingwangluo
matlabGUI设计实例,可以参看一下(matlabGUI design examples, you can see what)
- 2014-09-24 15:51:43下载
- 积分:1
-
lock
具有记忆以及错误报警功能的密码锁的protel原理图 c源码(Has the memory and error reporting function of combination lock c source code
)
- 2010-12-02 20:55:16下载
- 积分:1