- 
                        Selective
                        
                          数据链路层滑动窗口协议的设计与实现源码
信道模型为8000bps 全双工卫星信道,信道传播时延270 毫秒,信道误码率为10-5,信道提供字节流传输服务,网络层分组长度在240~256字节范围。(Sliding window data link layer protocol design and implementation of source-channel model 8000bps full-duplex satellite channel, the channel propagation delay 270 ms, the channel bit error rate of 10-5, the channel provides a byte stream transfer service, network layer packet length in the range of 240 to 256 bytes.)                         
                            - 2013-12-08 11:45:53下载
- 积分:1
 
- 
                        tongxunlu
                        
                          通讯录MFC,通过Access建立数据库,ODBC接口访问数据库,Visual C++ 6.0开发环境实现添加、删除、查看、全部查看、退出等内容。(Mail list MFC, establish the database through Access, ODBC database access interface, Visual C++ 6 development environment to achieve add, delete, view, view all, exit and other content.
)                         
                            - 2014-06-30 18:53:22下载
- 积分:1
 
- 
                        MATLAB
                        
                          源程序是matlab仿真的程序,很实用的!(Source is the matlab simulation program, very useful!)                         
                            - 2013-09-27 15:02:54下载
- 积分:1
 
- 
                        opengl界面显示机械臂末端轨迹
                        
                          opengl界面显示机械臂末端轨迹                         
                            - 2021-05-07下载
- 积分:1
 
- 
                        VIBE
                        
                          说明:  前景识别vibe程序,运行流畅。 b哥大作的个人实现版,准确率和高斯建模差不多,但运行速度极快(foreground he C library function int rand(void) returns a pseudo-random number in the range of 0 to RAND_MAX.
RAND_MAX is a constant whose default value may vary between implementations but it is granted to be at least 32767.)                         
                            - 2019-02-28 15:47:05下载
- 积分:1
 
- 
                        手势识别
                        
                          说明:  实现了2018年电赛手势识别题目。。。。。(code for gesture recognition)                         
                            - 2020-06-19 19:20:02下载
- 积分:1
 
- 
                        directx12
                        
                          说明:  directx12 3d 游戏开发实战 源码(Directx12 3D game development actual combat source code)                         
                            - 2020-10-30 21:53:01下载
- 积分:1
 
- 
                        GLTest1_rotate
                        
                          实现opengl三维坐标的绘制和任意旋转(Opengl realize three-dimensional coordinates of the mapping and arbitrary rotation)                         
                            - 2021-04-27 10:08:48下载
- 积分:1
 
- 
                        tcp-ip三卷合集
                        
                          TCPIP 经典案例,三次握手,四次分手,握手协议,入门经典(The minute you think of giving up, think of the reason why you held on so long)                         
                            - 2017-07-25 10:29:05下载
- 积分:1
 
- 
                        C# 使用字符串数组创建一组单选框数据
                        
                          C# 基于字符串数组创建一组单选按钮的例子,附上了例子源代码,大家可了解C#字符串数组的简单应用。
  以下是例子中的代码,运行后可见如下图所示的图片效果:
  //基于字符串数组创建一组单选按钮
  string[] MyArray = new string[4];
  MyArray[0] = "渝北区";
  MyArray[1] = "巴南区";
  MyArray[2] = "长寿区";
  MyArray[3] = "南岸区";
  RadioButton[] MyRadioButtons =new RadioButton[4];
  for (int i = 0; i < 4; ++i)
  {
      MyRadioButtons[i] = new RadioButton();
      MyRadioButtons[i].Text = MyArray[i];
      MyRadioButtons[i].Location = new System.Drawing.Point(
          10, 20 + i * 20);
      this.groupBox1.Controls.Add(MyRadioButtons[i]);
  }
  this.groupBox1.Text = "请评选全市卫生城区:";                         
                            - 2022-02-27 00:14:46下载
- 积分:1