Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - h.3
Search - h.3 - List
C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264-C perfect interpretation of classic algorithms/* header files : my_Include.h* /# include lt; Stdio.hgt;/* Start with the built-in C language function instructions* /# define PI 3.1415926/* Acer constants later, in another chapter Elaborates on* /# define circle (radius) (PI** radius radius)/* Macro function, a round of the area*//* to compare the numerical size of the write functions include writing paper*/int show_big_or_small (int a, b int, int c) (int tmp if (Agt; b) (tmp = a b a = b = tmp) if (BGT; c) (tmp = b b = c c = tmp) if (Agt; b) ( tmp = a b a = b = tmp) printf ( "ascending order by the following results :% d% d% d \ n", a, b, c)) procedures : in ascending order by the following results : 1 2 3 will the built-in functions include documents writte
Date : 2025-12-16 Size : 127kb User : 立功

C语言库函数速查[CHM文档]是一个很好的C语言函数查询器.属于CHM文档. iscntrl 原型:extern int iscntrl(int c) 用法:#include <ctype.h> 功能:判断字符c是否为控制字符 说明:当c在0x00-0x1F之间或等于0x7F(DEL)时,返回非零值,否则返回零。-C language library functions Check [CHM documentation] is a very good C language function for inquiries. CHM belonging to the text Ref. iscntrl prototype : extern int iscntrl (int c) Usage :# include
Date : 2025-12-16 Size : 81kb User : 王敏

This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C. 2. write a recursive function FIB (n) to find out the nth element in theFibanocci sequence number which is 1,1,2,3,5,8,13,21,34,55,…3. write the prefix and postfix form of the following infix expressiona + b – c / d + e * f – g * h / i ^ j4. write a function to count the number of nodes in a binary tr-This section contains a brief introductio n to the C language. It is intended as a tutorial o n the language, and aims at getting a reader new to C started as qu ickly as possible. It is certainly not intended as a substitute for any of the numerous textbook 's on C. 2. write a recursive function FIB (n) to fi nd out the nth element in sequence theFibanocci number which is 1,1,2,3,5,8,13,21,34,55, ... 3. write the prefix and postfix form of the follo wing infix expressiona b-c/d e f*- g* h/i ^ j4. wr ite a function to count the number of nodes in a bi nary tr
Date : 2025-12-16 Size : 22kb User : jim

C++名家精华.chm 我们用早期的C++语言编程。工作的第二天中午,厌烦了读职工手册,于是我写了一个工具类,里面包含一个原始指针作为成员变量: #include "xStruct.h" // definition of struct X class xWrapper { X* xItem public: xWrapper() : xItem(new X) { } ~xWrapper() { delete xItem } void dump() { /* dumps xItem to cout */ } } 当然了,使用这个类的程序由于内存问题总是时不时的崩溃,因为我违反三个重要设计原则之一:任何时候,只要你提供了析构函数、拷贝构造函数或赋值运算符中的一个,你通常需要三个都提供。([1]) “所以,”我自言自语道,“我必须自己处理拷贝和赋值问题。简单地...auto_ptr有拷贝构造函数和赋值运算符,我可以拿过来用一下。”(你知道早期C++程序库中的auto_ptr,是吗?) -err
Date : 2025-12-16 Size : 133kb User : 叶峰

DL : 0
include称为文件包含命令扩展名为.h的文件也称为头文件或首部文件 定义两个实数变量,以被后面程序使用 显示提示信息 从键盘获得一个实数x 求x的正弦,并把它赋给变量s 显示程序运算结果 main函数结束-include file contains a command called extension. h the document, also known as header files, or the first document of the definition of two real variables, so as to be behind the program prompts the use of display information from the keyboard get a real number x for x sinusoidal, and it conferred to the variable s results show that the procedure computing the end of main function
Date : 2025-12-16 Size : 268kb User : 王辉

DL : 1
用于DFT计算的c语言的库的最新版本,包含丰富的函数库.-A library for dft,has a lot of functions.which you can use free.
Date : 2025-12-16 Size : 3.94mb User : voc2007

DL : 0
第1课 Windows程序运行原理及程序编写流程 3 第2课 类的编写与应用 5 第3课 讲述MFC AppWizard的原理与MFC程序框架的剖析 6 第4课 第4课 MFC消息映射机制的剖析 讲述如何运用ClassWizard 8 第5课 文本编程 11 第6课 菜单编程 15 第7课 对话框用户界面程序的编写 21 第8课 逃跑按钮的巧妙实现 23 第9课 如何修改MFC AppWizard向导生成的框架程序的外观和大小 24 第10课 图形的绘制,如何使用自定义画笔 27 第11课 如何让CDC上输出的文字、图形具有保持功能 29 第12课 文件操作 31 第13课 使用CArchive类对文件进行操作 33 第14课 网络编程 35 第15课 多线程与网络编程 40 第16课 事件内核对象、关键代码段(临界区)的讲解 44 第17课 进程间通信 47 第18课 ActiveX编程 56 第19课 DLL编程 58 第20课 钩子与数据库编程-======================================================================== MICROSOFT FOUNDATION CLASS LIBRARY : ShowAllProcess ======================================================================== AppWizard has created this ShowAllProcess application for you. This application not only demonstrates the basics of using the Microsoft Foundation classes but is also a starting point for writing your application. This file contains a summary of what you will find in each of the files that make up your ShowAllProcess application. ShowAllProcess.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. ShowAllProcess.h This is the main header file for the application. It includes other project specific headers (including Resource.h) and declares the CShowAllProcessApp applica
Date : 2025-12-16 Size : 303kb User : 陈冉

特殊函数 16.1特殊函数与头文件 16.1.1特殊函数 16.1.2SpecialFunction.h 16.2特殊函数计算方法 16.2.1伽马函数 16.2.2不完全伽马函数 16.2.3误差函数 16.2.4第一类整数阶贝塞尔函数 16.2.5第二类整数阶贝塞尔函数 16.2.6变型第一类整数阶贝塞尔函数 16.2.7变型第二类整数阶贝塞尔函数 16.2.8不完全贝塔函数 16.2.9正态分布函数 16.2.10t-分布函数 16.2.11x
Date : 2025-12-16 Size : 337kb User : zhao bi

DL : 0
像堆栈一样,队列也是一种特殊的线性表。队列的插入和删除操作分别在线性表的两端进 行,因此,队列是一个先进先出( first-in-first-out, FIFO)的线性表。尽管可以很容易地从线 性表类L i n e a r L i s t(见程序3 - 1)和链表类C h a i n(见程序3 - 8)中派生出队列类,但在本章中并 没有这样做。出于对执行效率的考虑,我们把队列设计成一个基类,分别采用了公式化描述和 链表描述。-The same as the stack, the queue is a special kind of linear form. Queue insert and delete operations were carried out at both ends of the linear table, so the queue is a FIFO (first-in-first-out, FIFO) linear form. Although easily from the linear form class L inear L ist (see procedure 3- 1) and the list class C hain (see procedure 3- 8), the derived queue class, but in this chapter did not do so. Out of the efficiency considerations, we designed a base class queue were formulated by a description and list descriptions.
Date : 2025-12-16 Size : 799kb User : 谢锦明

用VC寫DLL的範例,可讓VB、VC使用 VB使用DLL範例 VC使用DLL範例 VC使用DLL不用.lib和.h的方式 DLL說明-Write DLL using VC example code of VB using DLL example code of VC using the DLL. example code of VC using the DLL without .h and .lib file
Date : 2025-12-16 Size : 250kb User : malo yang

让初学者从 Turbo C 2.0(以下简称 TC) 或 Borland C++ 3.1 开始学编程是个不错的建议,只是 TC 的环境实在太老了,复制粘贴都很不方便。有一个 Win-TC,简单用了一下,个人看法:不推荐使用。还不如 TC 好呢,因为它简化了所有调试,而调试是写程序相当重要的一部分。   不少老师直接拿 VC 来讲 C 语言的,因为 VC 的编辑和调试环境都很优秀,并且 VC2008 有适合教学的免费版本。只可惜在 VC 下只能做一些文字性的练习题,想画条直线画个圆都很难,还要注册窗口类、建消息循环等等,初学者会受严重打击的。许多老师让学生在 TC 下绘图,除了学生的兴趣和教学需要外,也是无奈。   还有就是计算机图形学,这门课程的重点是绘图算法,而不是 Windows 编程。所以,许多老师不得不用 TC 教学,因为 Windows 绘图太复杂了,会偏离教学的重点。   所以,我想给初学者一个更好的学习环境,就是 VC 方便的开发平台和 TC 简单的绘图功能,于是就有了这个库。如果您刚开始学 C 语言,或者您是一位教 C 语言的老师,再或者您在教/学计算机图形学,那么这个库一定会让您兴奋的。-use TC graphics.h in VC
Date : 2025-12-16 Size : 223kb User : 秦璞

DL : 0
ACE中网络通讯编程基本架构 Base64的编解码方法 C++和C#编写调用COM组件 SQLite在VC下的使用 Skype录音答录机编程思路和代码 Strsafe.h:更安全的C语言字符串处理函数 Win32 结构化异常处理(SEH)探秘 Win32 系统线程信息块(TIB)浅析 从32位应用程序到64位应用程序 大型门户网站架构服务部署研究分析 改变 CListCtrl、CHeaderCtrl 高度、字体、颜色和背景 关于内存对齐 基于CDialogBar的IE多标签栏的实现 将Lua嵌入到自己的程序中 可编辑子项的CListCtrl类 类似QQ游戏大厅导航的树型控件 让C++也支持RMI -ACE program in the network communication infrastructure Base64 encoder and decoder C++ and C#, call the COM component in VC SQLite use Skype audio recorder under the programming ideas and code Strsafe.h: safer string handling functions Win32 C language structure exception handling (SEH) Quest Win32 system thread information block (TIB) of 32-bit applications from 64-bit applications to large-scale deployment of the portal framework services research and analysis to change CListCtrl, CHeaderCtrl height, font, color and background on the memory alignment Based on the IE CDialogBar achieve more of the tab bar embedded Lua program can edit their own children' s CListCtrl class similar to the QQ games hall tree navigation control Rang C++ also supports the RMI
Date : 2025-12-16 Size : 8mb User : 万全

很好VC++音、视频编解码书籍,包括MPEG-1,2,3,4及H.264-Good VC++ audio and video codecs books, including MPEG-1, 2,3,4 and H.264
Date : 2025-12-16 Size : 13.25mb User : 我在

DL : 1
MFC:微软基础类(Microsoft Foundation Classes),同VCL类似,是一种应用程序框架,随微软Visual C++ 开发工具发布。目前最新版本为10.0(截止2011年3月),并且发布了中文版。该类库提供一组通用的可重用的类库供开发人员使用,大部分类均从CObject 直接或间接派生,只有少部分类例外。   MFC 应用程序的总体结构通常由开发人员从MFC类派生的几个类和一个CWinApp类对象(应用程序对象)组成。MFC 提供了MFC AppWizard 自动生成框架。   Windows 应用程序中,MFC 的主包含文件为"Afxwin.h"。   此外MFC的部分类为MFC/ATL 通用,可以在Win32 应用程序中单独包含并使用这些类。   由于它的易用性,初学者常误认为VC++开发必须使用MFC,这种想法是错误的。作为Application Framework,MFC的使用只能提高某些情况下的开发效率,只起到辅助作用,而不能替代整个Win32 程序设计。,MFC: Microsoft Foundation Class ( Microsoft Foundation Classes ), similar to the VCL, is an application framework, with Microsoft Visual C++ development tools released. The latest version is 10 (as of 2011 March), and released a Chinese version. The library provides a set of generic reusable class library for developers, most classes are derives directly or indirectly from CObject, only a small part of classification. MFC application program architecture usually by the developer of several class derived from the MFC class and a class CWinApp ( object application object ). MFC provides MFC AppWizard automatic generation framework. A Windows application, MFC main include file "Afxwin.h ". In addition MFC partial class for MFC/ATL universal, can be in the Win32 application alone contains and use these classes. Due to its ease of use, beginners often mistakenly believe that the development of VC++ must use the MFC, this is wrong. As Application Framework, MFC use can improve the developmen
Date : 2025-12-16 Size : 13.44mb User : 蔡沛霖

DL : 0
vc2010+opencv2.3.1基于MFC对话框的打开图片需添加的头文件(h)-vc2010+opencv2.3.1 MFC dialog-based open image header files to be added (h)
Date : 2025-12-16 Size : 1kb User : 顾亚军

DL : 0
有关c函数库,对于新手进一步了解c语言。同时这也是一本很好的c语言参考文档。-THE STANDARD C PROGRAM Preface The Code Acknowledgments Chapter 0:Introduction Background What the C Standard Says Using the Library lmplementingthe Library Testing the Library References Exercises Chapter 1:<assert.h> Background What the C Standard Says Using <assert.h> lmplementing<assert.h> Testing <assert.h> References Exercises Chapter 2:<ctype.h> Background What the C Standard Says Using <ctype.h> lmplementing Kctype.h> Testing Kctype.h> References Exercises Chapter 3:<errno.h> Background What the C Standard Says Using <errno.h> lmplementing<errno.h> Testing <errno.h> References Exercises
Date : 2025-12-16 Size : 13.46mb User : sd

Dr.Dobb s Journal-10 Classical Algorithm Books Set it s very good package because of it s content Content List 1- Fundamentals of Data Structures -by Ellis Horowitz and Sartaj Sahni 2- Data Structures, Algorithms and Program Style Using C -by James F. Korsh and Leonard J. Garrett 3- Data Structures and Algorithm Analysis in C -by Mark Allen Weiss 4- Data Structures: From Arrays to Priority Queues -by Wayne Amsbury 5- Information Retrieval: Data Structures & Algorithms -by William B. Frakes and Ricardo Baeza-Yates 6- Introduction to Algorithms -by Thomas H. Cormen, Charles 7- Practical Data Structures in C++ - by Bryan Flamig 8- Reliable Data Structures in C - by Thomas Plum 9- Data Structures and Algorithms - Alfred V. Aho, Bell 10- DDJ Algorithms and Data Structures Articles- Dr.Dobb s Journal-10 Classical Algorithm Books Set it s very good package because of it s content Content List 1- Fundamentals of Data Structures -by Ellis Horowitz and Sartaj Sahni 2- Data Structures, Algorithms and Program Style Using C -by James F. Korsh and Leonard J. Garrett 3- Data Structures and Algorithm Analysis in C -by Mark Allen Weiss 4- Data Structures: From Arrays to Priority Queues -by Wayne Amsbury 5- Information Retrieval: Data Structures & Algorithms -by William B. Frakes and Ricardo Baeza-Yates 6- Introduction to Algorithms -by Thomas H. Cormen, Charles 7- Practical Data Structures in C++ - by Bryan Flamig 8- Reliable Data Structures in C - by Thomas Plum 9- Data Structures and Algorithms - Alfred V. Aho, Bell 10- DDJ Algorithms and Data Structures Articles
Date : 2025-12-16 Size : 27.66mb User : msshfh

Jeffrey Richter是一位在全球享有盛誉的技术作家,尤其在Windows/.NET领域有着杰出的贡献。他的第一本Windows著作Windows 3: A Developer s Guide大获好评,从而声名远扬。之后,他又推出了经典著作《Windows 高级编程指南》和《Windows核心编程》。如今这两本书早已成为Windows程序设计领域的颠峰之作,培育了几代软件开发设计人员。他的每一本新作问世,我们都有理由相信这是一本巨著,我们想要的一切尽在其中。Jeffery 是Wintellect公司的创始人之一,也是MSDN杂志.NET专栏的特邀编辑。。因为他自1999年开始就参与了微软.NET框架开发组的咨询工作,与这些一线人员一起经历了.NET的孕育与诞生,所以他对.NET思想的领悟、对.NET的细节熟稔,是其他任何作家难以企及的。他是.NET著作领域中当之无愧的一面旗帜。- 翻译 英语 简体中文 Jeffrey Richter is a high reputation in the global technology writer, especially in the Windows/. NET has outstanding contributions in the field. His first work of Windows Windows 3: Developer s a Guide to great acclaim and fame. Later, he also introduced the classic Windows Advanced Programming Guide and the Windows kernel programming. Now the books has become the pinnacle of Windows programming, and nurtured generations of software development and design staff. Each new book he published, we have reason to believe that this is a masterpiece, in which everything we want to do. Jeffery is a co-founder of Wintellect s and MSDN Magazine. NET acquisitions editor of the column ... Since 1999, he has begun to participate in the Microsoft. NET Framework development advisory working group, together with field experience. The gestation and birth of the NET, h
Date : 2025-12-16 Size : 62kb User : leizhu

This magical single line can swap two number Do you want to know how it works just read following example code: #include<stdio.h> #define swap(x,y) (x^=y^=x^=y) main() { int a=3,b=5 swap(a,b) printf( d d a,b) } Output : 5 3 -This magical single line can swap two number Do you want to know how it works just read following example code: #include<stdio.h> #define swap(x,y) (x^=y^=x^=y) main() { int a=3,b=5 swap(a,b) printf( d d a,b) } Output : 5 3
Date : 2025-12-16 Size : 33kb User : ng

DL : 0
// 实验内容: // 1:使用Cpp语言实现一个链表; // 2:要求能存放整形数据(之后可思考如何改写成适应任意类型的代码,不做要求,不做评分); // 3:所写程序需能通过测试程序 // 4: 注意,这里对链表的访问采用STL风格,以begin作为第一个元素,end前一个元素(而不是end)作为最后一个元素 // 即为有效元素区间为 [begin(), end()),“前闭后开”,【不包括】end // 5: list.cpp/h为同学自己创建-for a ArrayList
Date : 2025-12-16 Size : 1.29mb User : 吕万友
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.