-
这是个防163邮箱的菜单程序 ,简单实用,
这是个防163邮箱的菜单程序 ,简单实用,-This is a anti-163 E-mail menu procedures, simple and practical,
- 2022-08-24 11:08:49下载
- 积分:1
-
。net学习中关于WebParts的小例子
。net学习中关于WebParts的小例子-. net to learn on a small example of WebParts
- 2022-10-13 07:55:02下载
- 积分:1
-
Adhoc
针对家庭网络组网的业务和服务特点,根据OSI模型,在深入研究数据链路层信道共享技术中MAC层CSDN/CA协议及其DCF机制和MAC层协议的信道利用率的基础上,提出了一种基于Adboc模式的无线家庭网络分层模型,设计出一个用于家庭网络节点间通信的通信子网,包括物理层,数据链路层和网络层,并对物理层传输技术,链路层信道共享技术以及网络层路由技术进行了分系和设计。(For a home network characteristics of network operations and services, according to OSI model, in-depth study of channel sharing the data link layer MAC layer technology CSDN/CA protocol and DCF MAC layer protocol mechanism and the channel utilization, based on the proposed Adboc model based hierarchical model of a wireless home network, to design a home network node communication for the communication subnet, including the physical layer, data link layer and network layer and physical layer transmission technology, link layer channel sharing technology and network layer routing technology and design of sub systems.)
- 2011-05-07 17:41:24下载
- 积分:1
-
timeseries
用小波神经网络来对时间序列进行预测,其中有四个m文件(wavelet neural network to forecast the time series, which document 4 m)
- 2020-12-15 15:39:15下载
- 积分:1
-
WinPcap来捕获和分析IPv4数据包
WinPcap来捕获和分析IPv4数据包-WinPcap to capture and analysis of IPv4 packets
- 2023-03-28 11:05:03下载
- 积分:1
-
matlab-GA-FIR
基于遗传算法来实现频率采样FIR滤波器的设计,本程序采用的是谢菲尔德的遗传算法工具箱,有各种函数,在工程里面添加了自己的适应度函数。(Based on genetic algorithm to implement the frequency sampling FIR filters, this procedure USES a genetic algorithm toolbox of Sheffield has a variety of functions, in engineering to add his own fitness function.)
- 2021-04-19 09:58:51下载
- 积分:1
-
company_network
搭建一个有4个部门的公司网络,包含研发部门、测试部门、管理部门和销售部门,利用局域网模型在一个对象中模拟一个服务器和多个客户端的行为(Set up a department of four corporate network, including R & D department, testing department, management department and sales department, the use of local area network model of an object in the simulation at a server and multiple clients of conduct)
- 2009-04-08 19:35:59下载
- 积分:1
-
C# Winform网络围棋(可对战)
程序使用VS2015,.NET4.5,.NET 2.0以上都可以编译使用,无第三方组件,可生成32、64位。Socket网络传输,可以对战、旁观,围棋走棋规则基本全面,可直接对杀。围棋规则算法写代码太麻烦,直接参考了GreatVerveGo(是单机的)算法,感谢作者。程序包含客户端和服务端2各部分。图片文件在gooinDebugRes里面1、先启动服务端 goServer.exe服务端:地址为IPAddress[] addrIP = Dns.GetHostAddresses("192.168.0.104"); //ip地址端口51888,根据你的需要进行修改;进入服务端后点击“开始监听”。服务端定义://连接的用户System.Collections.Generic.List userList = new List();//监听端口private int port = 51888;//走棋判断int[] GameRoom = new int[255]; //房间号int[] GameUser = new int[255]; //房间人数;int[] GameStat = new int[255]; //走棋状态:1-等待、2-准备、3-开始、4-旁观int[] GameReday = new int[255]; //走棋准备状态//旁观 获得走棋信息string lookuser = "";2、打开客户端 goo.exe这里直接设置了进入到房间“0”,进入后显示“等待其他人加入”,先进房的执黑旗,按钮不可用;当有第2个人进入后,执白棋,按钮显示“准备”;双方都点击“准备”后,进入对局;后面再有人进入为旁观者,能看见双方对局信息。房间都是“0”。地址:client = new TcpClient("192.168.0.104", 51888); //定义服务器端ip地址和端口,与服务器端定义要一致根据你的需要进行修改;客户端定义:private int[,] Qpan = new int[24, 24]; //棋盘数组private string SendLook = null; //发送给旁观者的对局信息private const int Qz_Null = 0; //没有棋子private const int Qz_Black = 1; //黑子private const int Qz_White = 2; //白子private const int Max_Qpan = 23; //棋盘最大路数private int[,] TmpA_Qpan = new int[24, 24]; //临时存储棋盘private int[,] TmpB_Qpan = new int[24, 24];//临时存储棋盘private int[,] Tmp_Qpan = new int[24, 24];//临时存储棋盘private int Current_Go = 1; //当前棋子颜色private int Qpan_Count = 19; //当前棋盘路数private int Rame; //气数private int Die_Num; //死子数private bool _Attack = false; //是否打劫private int Attack_X = 0; //打劫位置private int Attack_Y = 0; //打劫位置private Panel g_Hei; //鼠标移动 黑块private Panel g_Bai; //鼠标移动 白块private Panel Fit_Hei; //最后落子标记 黑private Panel Fit_Bai; //最后落子标记 白private Panel[,] QzH = new Panel[20,20]; //黑棋子private Panel[,] QzB = new Panel[20,20]; //白棋子int LastFitX = 0; //给旁观最后落子位置int LastFitY = 0; //给旁观最后落子位置int LastHB = 0; //给旁观最后落子颜色Point Mouseoff; //鼠标位置bool go_play = false; //能否走棋int Select_Qzi = 0; //是黑还是白,1-黑,2-白int ReceiveHB =1; //接收到的棋子颜色函数://初始化棋盘、棋子private void InitQpan()//判断该谁走棋private void Judge_HB()//显示棋子private void ShowQz(int i, int j, int QzHB)//重置棋盘棋子private void Rest_Qpan()//备份棋盘棋子private void Qpan_Backup()//恢复棋盘棋子private void Qpan_Restore()//刷新棋盘棋子private void Qpan_Refresh(int QzHB)//计算棋子的气数底层函数private void Base_Calc(int i, int j, int QzHB)//计算气数private void Calc_Ream(int m, int n, int QzHB)//计算气数接口private void Calc_Interface(int QzHB)//落子处理,判断打劫、打n还1、吃掉对方棋子private void Falling(int xx, int yy)//设置打劫private void Set_Attack(int i, int j)//最后落子标记private void Fit_Flag(int xx, int yy)//旁观者最后落子标记private void LookFit_Flag(int Qhb, int xx, int yy)//对方走棋显示在己方并判断打劫、打n还1、吃掉对方棋子private void Opp_Falling()3、跨线程调用封装在CrossThreadCall.cs4、时间有限,程序没有做计算胜负,没有做掉线处理。基本规则有了,其他的就是套接字变来变去,需要新功能自己添加。只是一个初学练习,更多初学资料到我的博客http://www.cnblogs.com/qiaoke/
- 2017-03-12下载
- 积分:1
-
外国人是kind of超
老外写的超连接类,功能比较全,类似于HTML的链接,还能自定义提示信息-foreigner was kind of hyper-links, the whole functional comparison, similar to HTML links, but also from the definition of a message
- 2022-03-01 18:54:05下载
- 积分:1
-
age
source codigo wyd v 7,54 edicao em c++ visual studio 2017
- 2020-06-19 00:40:01下载
- 积分:1