登录
首页 » Windows开发 » Andrew Koenin成名之作.. 本书所揭示的知识,至少能够帮助你减少C代码和初级C++代码中90%的Bug 聆听大师教诲 掌握编程精髓......

Andrew Koenin成名之作.. 本书所揭示的知识,至少能够帮助你减少C代码和初级C++代码中90%的Bug 聆听大师教诲 掌握编程精髓......

于 2022-01-25 发布 文件大小:98.50 kB
0 215
下载积分: 2 下载次数: 1

代码说明:

Andrew Koenin成名之作.. 本书所揭示的知识,至少能够帮助你减少C代码和初级C++代码中90%的Bug 聆听大师教诲 掌握编程精髓... -Andrew Koenin famous for .. The book of revealed knowledge, at least be able to help you reduce the C code and primary C++ Code 90 of the Bug programming to listen to master the essence of the teachings of master ...

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 修正后版本 遗传算法是基于达尔文进化论的一种智能优化算法,一种可用于复杂系统优化的具有鲁棒性的搜索算法,适用于解决传统方法难以解决的复杂的、非线性问题,可广...
    修正后版本 遗传算法是基于达尔文进化论的一种智能优化算法,一种可用于复杂系统优化的具有鲁棒性的搜索算法,适用于解决传统方法难以解决的复杂的、非线性问题,可广泛应用于组合优化、离散优化、工程优化等领域。旅行商问题是一种NP难的组合优化问题,具有重要的理论研究价值和实际应用背景。然而,传统遗传算法中存在有不足,需要提出新的改进的遗传算法,并应用于旅行商问题的求解。-Amended version of genetic algorithm based on Darwin" s theory of evolution is an intelligent optimization algorithm, a complex system can be used to optimize the robustness of the search algorithm, the application of traditional methods to solve difficult and complex, nonlinear problems, can be widely used in combinatorial optimization, discrete optimization, engineering, optimization and other fields. Traveling Salesman Problem is a NP hard combinatorial optimization problem, has important theoretical value and practical application of research background. However, the traditional genetic algorithm, there is less than the need to introduce new improved genetic algorithm, and applied for solving the traveling salesman problem.
    2023-06-10 23:05:03下载
    积分:1
  • MFC Insider (source book distribution) CHAP04.rar
    MFC技术内幕(配书源码)CHAP04.rar-MFC Insider (source book distribution) CHAP04.rar
    2022-02-06 18:46:21下载
    积分:1
  • VC system of the code was developed for the White Box 2003 VC.NET category code...
    VC++系统中对自己编制的代码进行白盒测试的VC.NET 2003代码类及例子-VC system of the code was developed for the White Box 2003 VC.NET category code and examples
    2023-06-26 02:10:03下载
    积分:1
  • 保存地图文档用vc++2005+AE9.2
    保存地图文档用vc++2005+AE9.2-Save the map document used vc++ 2005+ AE9.2
    2022-07-15 16:25:28下载
    积分:1
  • 谢宾治三角形的输出算法的具体实现,采用动态规划算法,使用vc++6.0编写。...
    谢宾治三角形的输出算法的具体实现,采用动态规划算法,使用vc++6.0编写。-Xie Bin Fan governance triangle output to achieve the specific algorithm using dynamic programming algorithm, vc 6.0 preparation.
    2023-04-07 22:25:04下载
    积分:1
  • crimefile 系统
    系统分析是一个收集和解释事实,诊断问题和对信息的过程推荐系统上的改善措施。这是一个问题的解决需要 密集的交流的活动之间的系统用户和系统的开发者。系统分析或研究是一个重要的阶段,任何系统的开发过程。 该系统是对仔仔细细地研究和分析。系统分析员审问者的角色,务虚深入到本系统的工作。查看系统作为一个 整体和对系统的输入被确定。从组织的产出是追溯到各种进程。系统分析被关切越来越意识到这个问题,查明 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2023-09-09 11:50:04下载
    积分:1
  • 一个透明窗体源代码,窗体标题采用API函数画出来的,效果还不错的,原作者"蓝色炫影"在标题栏没有实现,现经本人该后实现了标题显示 修改:陈峰 clg...
    一个透明窗体源代码,窗体标题采用API函数画出来的,效果还不错的,原作者"蓝色炫影"在标题栏没有实现,现经本人该后实现了标题显示 修改:陈峰 clg-123@126.com-Form a transparent source code, form title used by the API function paintings, the effect is also good, original author of
    2023-08-07 21:15:03下载
    积分:1
  • 可以生成自己产品序列号的小东东,绝对原创
    可以生成自己产品序列号的小东东,绝对原创-their products can generate a sequence of small Dongdong, absolute originality
    2022-11-13 02:25:02下载
    积分:1
  • Socket通信示例
    一次.net Socket UDP编程   最近想写一个网络服务器端的程序,想看看在大量客户端数下程序的运行情况。于是对.net 的Socket编程进行了一些研究,发现.net 3.5 里SocketAsyncEventArgs 是基于IOCP实现。MSDN上有相关的示例,但它是基于TCP协议的,而我想要的是基于UDP协议的。网上很难找到基于UDP协议的SocketAsyncEventArgs示例(UDP需要用IOCP吗?),于是决定自己写一个基于UDP协议的示例,看看它在和大量客户端通讯时的运行情况。   程序分为服务器端和客户端,它们使用UDP协议进行通讯。众所周知UDP是无连接的,可我又想计算出有多少客户端和服务器通信,其中又有多少是新的客户端。所以设计让服务器端程序绑定两个端口。一个端口专门用于接收客户端第一次发送过来的数据包;另一个端口负责和已经接入的客户端进行通讯(是不是有点像TCP的接入,例子本身也在模仿Tcp编程)。客户端比较简单让它生成足够多的Socket,然后不断的向服务器端发送数据包即可。
    2022-08-17 12:38:18下载
    积分:1
  • 霍夫曼编码译码程序
    霍夫曼编码译码程序-Huffman encoding decoding procedures
    2023-07-16 00:50:03下载
    积分:1
  • 696516资源总数
  • 106918会员总数
  • 4今日下载