51cto学院当中韩立刚老师2017全新课程配套书,有需要的朋友可以拿去。
2019-12-21 20:06:55 131.89MB 韩立刚 网络 51cto
1
摘自计算机网络原理书(前言): This book is now in its fourth edition. Each edition has corresponded to a different phase in the way computer networks were used. When the first edition appeared in 1980, networks were an academic curiosity. When the second edition appeared in 1988, networks were used by universities and large businesses. When the third edition appeared in 1996, computer networks, especially the Internet, had become a daily reality for millions of people. The new item in the fourth edition is the rapid growth of wireless networking in many forms. The networking picture has changed radically since the third edition. In the mid-1990s, numerous kinds of LANs and WANs existed, along with multiple protocol stacks. By 2003, the only wired LAN in widespread use was Ethernet, and virtually all WANs were on the Internet. Accordingly, a large amount of material about these older networks has been removed. However, new developments are also plentiful. The most important is the huge increase in wireless networks, including 802.11, wireless local loops, 2G and 3G cellular networks, Bluetooth, WAP, i-mode, and others. Accordingly, a large amount of material has been added on wireless networks. Another newly-important topic is security, so a whole chapter on it has been added.
2019-12-21 20:03:51 8.16MB 计算机网络
1
无界面的java模拟实现GBN原理,计算机网络课程实验
2019-12-21 20:03:08 10KB java GBN
1
MATLAB神经网络原理与实例精解,MATLAB神经网络原理与实例精解,视频
2019-12-21 19:57:51 49B 神经网络原理
1
计算机网络原理创新教程韩立刚老师课件 第1章 计算机网络详解 第2章 物理层 第3章 GNS3网络模拟器 第4章 数据链路层v2 第5章 IP地址和子网划分 第6章 静态路由和动态路由 第7章 网络层协议 第8章 传输层协议v4 第9章 应用层v2 第10章 网络安全 2 第10章 网络安全 第11章 IPv6 以及课后习题答案和相关教学辅助表格
2019-12-21 19:51:25 32.26MB 课件 韩立刚 计算机网络 网络课程
1
韩立刚-计算机网络原理精讲课程的课件以及各个章节的笔记,还包括部分软件
2019-12-21 19:47:00 31.07MB 计算机网络
1
计算机网络原理实验五,是关于RIP路由协议的,自己做的实验,代码和结果截图都有,步骤详细
2019-12-21 19:36:57 438KB RIP路由协议
1
P2P对等网络原理与应用
2019-12-21 19:32:39 36.28MB P2P
1
《MATLAB神经网络原理与实例精解》随书附带源程序
2019-12-21 19:28:50 912KB MATLAB 神经网络
1
环境:Windows XP SP3、 VC++ 6.0、 Windows 2003 SDK 使用步骤: 1、下载解压之后,使用VC++ 6.0打开两个工程:一个是SocketServer和一个ClientSocket工程。 2、首先运行服务器端工程,选默认的端口1008 3、然后运行客户端工程,选默认的端口1008和默认的服务器地址 4、再运行多个客户端进程 5、如果一切正常,可以每个客户端的消息发送,我们可以在服务端和各个客户端同步看到消息 实现一个服务器对多个客户端的关键是,在服务端的使用集合CPtrList类用保存客户端的socket对象,思想与Java中的编程思想一样,只不过Java中会使用多线程技术,在Vector集合保存客户端的socket对象,而MFC框架提供了CSocket类,它是一个异步通信的类,所以看上去代码比较Java的多线程代码简单的实现了一个对多的即时通讯功能。另外,MFC提供了CSocketFile类和CArchive类与CSocket类实现了C++的网络通讯编程功能。 本示例注释非常详细,所有的辅助类都放一个util目录中,然后在工程中分了一个目录来管理这些辅助类,使用代码非常清晰。手动书写部分的代码是按Java的规范书写,当然其它代码由IDE生成的,所以是MS的风格,所以当你看代码时,只要是使用“骆驮命名法”的方法都是本人书写的功能性代码。 参看的思路:在服务端要从回调方法onAccept读起;而客户端代码主要从OnSendButton方法读起,即可理解整个代码的意思。 阅读对象:具有Java的Socket编程经验的人员,并且希望能够书写出比Java效率更高的即时通讯程序的人员
1