联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找All 文章/文档(114) 
按平台查找All Visual C++(114) 

[文章/文档] 【OpenCV2版】《OpenCV3编程入门》书本配套源代码

OpenCV is written in C++ language, and its main interface is C++ language, but still retains a large number of C language interfaces. The library also has a large number of Python, Java and MATLAB/OCTAVE (version 2.5) interfaces. API interface functions for these languages can be obtained through online documentation. Now it also provides support for C#, Ch, Ruby, GO.
OpenCV is written in C++ language, and its main interface is C++ language, but still retains a large number of C language interfaces. The library also has a large number of Python, Java and MATLAB/OCTAVE (version 2.5) interfaces. API interface functions for these languages can be obtained through online documentation. Now it also provides support for C#, Ch, Ruby, GO. (2019-04-22, Visual C++, 56917KB, 下载3次)

http://www.pudn.com/Download/item/id/1555930500549642.html

[文章/文档] GEP

简单的基因表达式编程算法实现一组坐标点输入产生指定精度的函数表达式,其中包括了堆栈解码、GRCM解码方式的实现函数。
Simple Gene Expression Programming (GEP) algorithm implements a set of coordinate point inputs to generate a specified precision function expression, including stack decoding, GRCM decoding implementation functions. (2018-10-22, Visual C++, 4KB, 下载9次)

http://www.pudn.com/Download/item/id/1540139014748433.html

[文章/文档] c语言资料

本资料适用于c语言初学者的入门教育,包括了一系列的c语言教程以及一些经典的编程案例,并且自带一套谭浩强C语言学习软件,清晰明朗。非常易用
This information is suitable for beginners in C language teaching. It includes a series of C language tutorials, some classic programming cases, and a set of Tan Haoqiang C language learning software, which is clear and clear. Very easy to use (2018-03-15, Visual C++, 24444KB, 下载4次)

http://www.pudn.com/Download/item/id/1521104836442073.html

[文章/文档] S-Curve-VC++

S曲线加减速VC++源程序; 1.运动控制相关的源代码; 2.S型曲线加速; 3.编程语言: VC++;
S curve plus or deceleration VC++ source program; 1. source code related to motion control; 2.S curve acceleration; 3. programming language: VC++; (2018-01-11, Visual C++, 56KB, 下载36次)

http://www.pudn.com/Download/item/id/1515680774144724.html

[文章/文档] OJ参考答案

这是OJ平台上数据结构的题目及参考答案,前40道题和后40道题都有
swust oj question and answer (2017-11-07, Visual C++, 100KB, 下载7次)

http://www.pudn.com/Download/item/id/1510059244276489.html

[文章/文档] KEA128手册

KEA128芯片手册,里面包含KEA128参考手册和数据手册的中文版,还有KEA128BootLoader的说明文档。还有很多相关系列芯片的手册
The KEA128 chip manual contains the KEA128 reference manual and the Chinese version of the data manual, as well as the instructions for KEA128BootLoader.There are a lot of manuals for the series of chips (2017-09-27, Visual C++, 27801KB, 下载55次)

http://www.pudn.com/Download/item/id/1506506714508272.html

[文章/文档] coin3d-ppt

国外的一个深入浅出介绍coin3d基础的ppt文档,初学者了解了一些coin3d的知识后,通过它可以系统的了解整个coin3d的基础编程框架,值得一看。
An introduction of foreign visitors to learn basic coin3d ppt documents, beginners learn the knowledge of some coin3d, through it can understand the whole coin3d system based programming framework, worth a visit. (2010-11-04, Visual C++, 676KB, 下载112次)

http://www.pudn.com/Download/item/id/1335924.html

[文章/文档] 2209544yufa

1.设计目的 课程设计为学生提供了一个既动手又动脑,独立实践的机会,将课本上的理论知识和实际有机的结合起来,锻炼学生的分析系统,解决实际问题的能力。提高学生分析系统、实践编程的能力。
1. Designed course is designed to provide students with a hands they both mental and physical, independent practice opportunities will be textbook on theoretical knowledge and practical combination of organic, exercise analysis system for students to solve practical problems. Improve the students to analyze the system and practice of programming ability. (2010-06-09, Visual C++, 2KB, 下载1次)

http://www.pudn.com/Download/item/id/1207565.html

[文章/文档] yueshu

最多约数问题 正整数x 的约数是能整除x 的正整数。正整数x 的约数个数记为div(x)。例如,1,2,5,10 都是正整数10 的约数,且div(10)=4。设a 和b 是2 个正整数,a≤b,找出a 和b之间约数个数最多的数x。 编程任务:对于给定的2 个正整数a≤b,编程计算a 和b 之间约数个数最多的数。 Input 输入数据的第1 行有2 个正整数a和b。 Output
Up to a few issues about some positive integer x can be divisible by x number of positive integer. Some positive integer x the number recorded as the number of div (x). For example, 1,2,5,10 are about 10 positive integer number, and div (10) = 4. For a and b are two positive integers, a ≤ b, find a and b between the number of up to about a few of the number of x. Programming tasks: For a given two positive integers a ≤ b, calculated between a and b about the number of the largest number of number. Input input data line 1 are two positive integers a and b. Output (2009-06-25, Visual C++, 1KB, 下载4次)

http://www.pudn.com/Download/item/id/821607.html

[文章/文档] yixing

此程序是经过查阅相关资料,完全个人所作,没有仿照任何其它的编译器源代码。感受最深的是“模块化设计”,构造语法阶段的DFA时,第一次想从整体上构造一个DFA,但是越来越复杂,以至到最后无法进行下去;然后把它分成说明语句、表达式、布尔表达式、和句法四个部分,分别构造各自的DFA,并设置相应的入口,最后把四个DFA合并起来就可以了。 通过本次实验大作业,巩固了我C程序编程的基本能力,对指针、链表的操作更加熟练。最重要的是本学期的编译实验加深了我对《编译原理》这门课程的理解。
err (2008-06-26, Visual C++, 21KB, 下载7次)

http://www.pudn.com/Download/item/id/498662.html

[文章/文档] ICMP

使用Visual Studio C++ 6.0和网络接口套接字Socket进行Windows环境下的网络编程,运用原始嵌套字RAW_SOCKET从IP层开始构造整个ICMP报文,通过ICMP协议所提供的回送请求(echo request)和回送应答(echo reply)这两种报文实现检测目的站的可达性与状态
The use of Visual Studio C++ 6.0 and the network interface to Windows Sockets Socket network programming environment, using the original nested RAW_SOCKET word from the IP layer started to construct the entire ICMP message, through the ICMP protocol provided loopback request (echo request) and return response (echo reply) packet realize these two stations can detect the purpose and status (2008-06-04, Visual C++, 22KB, 下载70次)

http://www.pudn.com/Download/item/id/482221.html

[文章/文档] vc75523457624

信使小精灵,是一个简易的聊天工具。主要是演示了网络编程的主要步骤。本程序使用封装好的函数库,使得应用层不需要考虑网络消息是如何被接受和发送的,也不需要考虑数据粘包和丢包的刺手问题,你只要调用相应的函数就可以了。函数库为你做好了这些工作。你只需要定义自己的协议头和消息结构体,定义好网络消息的回调函数就可以了。
Messenger elf is a simple chat tool. Mainly to demonstrate the major steps in network programming. This procedure using the package a good library, making the application layer does not need to consider how the network news is accepted and sent, nor need to consider the data packet and packet loss sticky hands of the Spurs, you simply call the corresponding function can be a . Function library for you to do a good job in those efforts. You only need to define your own protocol header and message structure, the definition of good network news can be a callback function. (2008-05-28, Visual C++, 37KB, 下载8次)

http://www.pudn.com/Download/item/id/475512.html

[文章/文档] C++Merit

C++语言是一个面向对象的语言,使用C++编写的代码更加简捷、高效,更具可维护性和可重用性。但是很多人使用了C++语言后却感到C++与C编程没有什么区别。这其实是由于对C++语言的特点和特色理解和使用不够造成的。事实上,没有任何一个程序员使用C语言的编程效率可以超过C++语言的。
C language is an object-oriented language, using C code written in a more simple, efficient, more maintainability and reusability. But many people like to use the C language is very C and C programming is no different. This is because of C language features and characteristics, to understand and not caused by use. In fact, no single programmer using C programming language, the efficiency can be more than C language. (2007-11-08, Visual C++, 6KB, 下载1次)

http://www.pudn.com/Download/item/id/357690.html

[文章/文档] VC小知识

VC小知识 学习VC++时经常会遇到链接错误LNK2001,该错误非常讨厌,因为对于 编程者来说,最好改的错误莫过于编译错误,而一般说来发生连接错误时, 编译都已通过。产生连接错误的原因非常多,尤其LNK2001错误,常常使人不 明其所以然。如果不深入地学习和理解VC++,要想改正连接错误LNK2001非 常困难。
VC small learning VC++ will always be wrong to link LNK2001 error of the hate, because programmers, the best thing is to change the wrong compiler error and the connection errors generally occur, the compiler have passed. Have connected the wrong reason is very large, especially LNK2001 wrong, and often unknown to these people. If not in-depth study and understanding of Visual C++, in order to correct the wrong connecting LNK2001 very difficult. (2005-01-06, Visual C++, 27KB, 下载32次)

http://www.pudn.com/Download/item/id/1105001419473339.html
总计:114