▍1. FUZZY_PID
自适应模糊控制C语言代码,文件含有对PID增益的详细表述,以及模糊逻辑的模糊化、控制规则表、解模糊的详细代码。(Adaptive Fuzzy Control C language code, a detailed statement of the file containing PID gains, fuzzy logic and fuzzy control rules table, detailed code ambiguous solutions.)
自适应模糊控制C语言代码,文件含有对PID增益的详细表述,以及模糊逻辑的模糊化、控制规则表、解模糊的详细代码。(Adaptive Fuzzy Control C language code, a detailed statement of the file containing PID gains, fuzzy logic and fuzzy control rules table, detailed code ambiguous solutions.)
syn ddos flood 工具源代码(syn ddos flood source code)
ActiveX文档容器,通过这个例子可以交你如何自己写一个,(ActiveX container, through this example can teach you how to write my own one,)
使用wincap的网络测试工具,可以实现基本网络测试内容(Using wincap network testing tools, can realize the basic contents of network testing)
一个网络嗅探的小工具,初学做的,自己感觉不太好用,老是卡,(A network sniffer small tools, beginners do, don t feel good on your own, always card,)
I use vc to achieve the Gouraud algorithm(I use vc to your the Gouraud algorithm)
解除共享软件日期限制软件源码,可以参考用(Its date of shareware software source code, you can reference)
很好的源程序代码,具有很好的学习价值,可以下载使用(Good source code, has the very good learning value, can be used to download)
利用http协议实现网络通信,是基于c语言编写(Use the HTTP protocol to realize network communication, is based on the c language)
讯飞唤醒源码,基于讯飞SDK的语音唤醒代码,没有上传SDK,需要自己去官网下载SDK,(the awake source of xunfei)
实现PING功能,很不错的代码,很详细,很好看(To achieve PING function, very good code, very detailed, very nice)
代理IP用途非常广泛,但是因为其不够稳定所以需要不停的更新,C#源码世界第二季重磅出击,能够自动获取更新代理IP地址并自动校验有效性。 整个项目非常完整,从数据库设计到流程,多线程执行任务。数据库基于SQLite,实现了以下功能: 定时自动从代理IP网站提取代理到数据库中并判断该代理ip的位置。 多线程校验代理IP有效性,自动剔除无效代理。 提供了现成的随机去除一个有效代理IP的方法,并附送一个demo,自动提取一个有效IP并使用这个IP访问网站。 源码采用简单三层架构: Model:模型层,主要放了一个tb_proxy模型,包含代理ip的IP、端口、有效性、地址、最后校验时间 Common:数据交互,主要存放了一个tb_proxy类,包含了对代理IP的增加、删除、修改和随机提取 Library:公用类库,包含一个HttpHelper类、RegHelper正则帮助类、IPHelper根据ip查询位置信息类和一个SQLiteHelper类。 主程序:一个主窗体和一个代理提取测试窗体。主窗体中主要完成代理的提取和多线程校验,测试窗体主要实现随机提取一个有效代理并访问一个ip查询网站,测试代理有效性和真实性。 源码特色: 项目非常简洁明了,代码都有详细的注释说明。 使用了qqwry.dat根据IP获取所在地址。 多线程校验使用了lock以防止冲突,默认开启了50个线程,如果觉得CPU扛不住可以适当减少。 更新数据库的方法也使用了lock,因为太多的并发会导致SQLite出错,这样这样做并不影响更新速度。 日志显示采用了公共的日志列队方法,直接在主项目的任何地方调用都可以。
程序使用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/
枚举网络设备的程序, vc6开发, 新手可以参考!(Enumeration of network equipment procedures, vc6 development, novice can refer to!)
对人工鱼群算法进行了详细的介绍,然后用实例讲解了算法的用法(Artificial fish swarm algorithm is introduced in detail, and then explained the use of the algorithm)
用来通过HTTP协议下载的程序,支持断点续传和多线程下载(Used to download the program through the HTTP protocol, support HTTP and multi-threaded download)
一个对注册表进行编程的程序。可以添加删除修改注册表的项。(A program that registers the registry. You can add the entry to modify the registry.)