Welcome![Sign In][Sign Up]
Location:
Search - c B

Search list

[OtherC++B定时关机

Description: 这是我自己用C++BUILDER做的一个定时关机的程序-This is for my own use C BUILDER do a regular shutdown procedures
Platform: | Size: 357903 | Author: | Hits:

[VC/MFCC++Primer中英文版第4版

Description: 本书是久负盛名的C++经典教程,其内容是C++大师Stanley B. Lippman丰富的实践经验和C++标准委员会原负责人Josée Lajoie对C++标准深入理解的完美结合,已经帮助全球无数程序员学会了C++。本版对前一版进行了彻底的修订,内容经过了重新组织,更加入了C++ 先驱Barbara E. Moo在C++教学方面的真知灼见。既显著改善了可读性,又充分体现了C++语言的最新进展和当前的业界最佳实践。书中不但新增大量教学辅助内容,用于强调重要的知识点,提醒常见的错误,推荐优秀的编程实践,给出使用提示,还包含大量来自实战的示例和习题。对C++基本概念和技术全面而且权威的阐述,对现代C++编程风格的强调,使本书成为C++初学者的最佳指南;对于中高级程序员,本书也是不可或缺的参考书。
Platform: | Size: 2145385 | Author: cys6139@sina.com | Hits:

[Windows Develop征服4.0马端源码

Description: using System; using System.Collections.Generic; using System.Text; namespace NewestCOServer { public class Cryption { class CryptCounter { UInt16 m_Counter = 0; public byte Key2 { get { return (byte)(m_Counter >> 8); } } public byte Key1 { get { return (byte)(m_Counter & 0xFF); } } public void Increment() { m_Counter++; } } private CryptCounter _decryptCounter; private CryptCounter _encryptCounter; private byte[] _cryptKey1; private byte[] _cryptKey2; private byte[] _cryptKey3; private byte[] _cryptKey4; private bool Decrypt2 = false; public Cryption() { _decryptCounter = new CryptCounter(); _encryptCounter = new CryptCounter(); _cryptKey1 = new byte[0x100]; _cryptKey2 = new byte[0x100]; byte i_key1 = 0x9D; byte i_key2 = 0x62; for (int i = 0; i 4 | buffer[i] < 4 | buffer[i] < 4 | buffer[i] << 4); buffer[i] ^= (byte)(_cryptKey4[_decryptCounter.Key2] ^ _cryptKey3[_decryptCounter.Key1]); _decryptCounter.Increment(); } } } public void GenerateKeys(UInt32 CryptoKey, UInt32 AccountID) { UInt32 tmpkey1 = 0, tmpkey2 = 0; tmpkey1 = ((CryptoKey + AccountID) ^ (0x4321)) ^ CryptoKey; tmpkey2 = tmpkey1 * tmpkey1; _cryptKey3 = new byte[256]; _cryptKey4 = new byte[256]; for (int i = 0; i < 256; i++) { int right = ((3 - (i % 4)) * 8); int left = ((i % 4)) * 8 + right; _cryptKey3[i] = (byte)(_cryptKey1[i] ^ tmpkey1 left); _cryptKey4[i] = (byte)(_cryptKey2[i] ^ tmpkey2 left); } Decrypt2 = true; } public void GenerateKeys2(byte[] InKey1, byte[] InKey2) { byte[] addKey1 = new byte[4]; byte[] addKey2 = new byte[4]; byte[] addResult = new byte[4]; //addKey1.i = 0; //addKey2.i = 0; byte[] tempKey = new byte[4]; long LMULer; // InKey1[0] = 0x20; // InKey1[1] = 0x5c; // InKey1[2] = 0x48; // InKey1[3] = 0xf4; // InKey2[0] = 0x00; // InKey2[1] = 0x44; // InKey2[2] = 0xa6; // InKey2[3] = 0x2e; //if (Key3) delete [] Key3; //if (Key4) delete [] Key4; _cryptKey3 = new byte[256]; _cryptKey4 = new byte[256]; for (int x = 0; x < 4; x++) { addKey1[x] = InKey1[3 - x]; addKey2[x] = InKey2[3 - x]; } //cout << "Key1: " << addKey1.i << endl; //cout << "Key2: " << addKey2.i << endl; uint Adder1; uint Adder2; uint Adder3; Adder1 = (uint)((addKey1[3] << 24) | (addKey1[2] << 16) | (addKey1[1] << 8) | (addKey1[0])); Adder2 = (uint)((addKey2[3] << 24) | (addKey2[2] << 16) | (addKey2[1] 8) & 0xff); addResult[2] = (byte)((Adder3 >> 16) & 0xff); addResult[3] = (byte)((Adder3 >> 24) & 0xff); for (int b = 3; b >= 0; b--) { // printf("%.2x ", addResult.c[b]); tempKey[3 - b] = addResult[b]; } tempKey[2] = (byte)(tempKey[2] ^ (byte)0x43); tempKey[3] = (byte)(tempKey[3] ^ (byte)0x21); for (int b = 0; b < 4; b++) { tempKey[b] = (byte)(tempKey[b] ^ InKey1[b]); } //Build the 3rd Key for (int b = 0; b < 256; b++) { _cryptKey3[b] = (byte)(tempKey[3 - (b % 4)] ^ _cryptKey1[b]); } for (int x = 0; x < 4; x++) { addResult[x] = tempKey[3 - x]; } Adder3 = (uint)((addResult[3] << 24) | (addResult[2] << 16) | (addResult[1] << 8) | (addResult[0])); LMULer = Adder3 * Adder3; LMULer = LMULer 32; Adder3 = Convert.ToUInt32(LMULer & 0xffffffff); addResult[0] = (byte)(Adder3 & 0xff); addResult[1] = (byte)((Adder3 >> 8) & 0xff); addResult[2] = (byte)((Adder3 >> 16) & 0xff); addResult[3] = (byte)((Adder3 >> 24) & 0xff); for (int b = 3; b >= 0; b--) { tempKey[3 - b] = addResult[b]; } //Build the 4th Key for (int b = 0; b < 256; b++) { _cryptKey4[b] = Convert.ToByte(tempKey[3 - (b % 4)] ^ _cryptKey2[b]); } Decrypt2 = true; //cout << "Int representation: " << charadd.i << endl; } } }
Platform: | Size: 3638778 | Author: andesion@vip.qq.com | Hits:

[VC/MFCEssential C++(中文版)

Description: 喜欢C++的朋友都应该听说过这本书的大名吧。 stanley B.Lippman所著的《C++ Essential》雄距书坛历久不衰,堪称C++最佳教本,但是走过10个年头之后,继1237页的《C++ Essential》第三版,Lippman 又朴归真地写了这本276页的《Essential C++》,有了满汉全席,为何还眷顾清粥小菜?完成了伟大的巨著,何必回头再写这么一本轻薄短小的初学者用书呢? 所有知道Lippman和《C++ Essential》的人,脸上都浮现相同的问号。
Platform: | Size: 8244499 | Author: benson_wind | Hits:

[AlgorithmB样条插值 C++

Description: 详细的B样条曲线生成程序
Platform: | Size: 1396681 | Author: zhang20051252@126.com | Hits:

[OtherThe C Programming Language-C语言详解英文版

Description: 这是一本讲解C语言的书,是英文编写,十分经典,是大部分公司的新职员入职之前必须要看的书籍之一,很多公司都以它作为培训教材,帮助你更快了解C语言的奥妙。 Contents l Preface l Preface to the first edition l Introduction 1. Chapter 1: A Tutorial Introduction 1. Getting Started 2. Variables and Arithmetic Expressions 3. The for statement 4. Symbolic Constants 5. Character Input and Output 1. File Copying 2. Character Counting 3. Line Counting 4. Word Counting 6. Arrays 7. Functions 8. Arguments - Call by Value 9. Character Arrays 10. External Variables and Scope 2. Chapter 2: Types, Operators and Expressions 1. Variable Names 2. Data Types and Sizes 3. Constants 4. Declarations 5. Arithmetic Operators 6. Relational and Logical Operators 7. Type Conversions 8. Increment and Decrement Operators 9. Bitwise Operators 10. Assignment Operators and Expressions 11. Conditional Expressions 12. Precedence and Order of Evaluation 3. Chapter 3: Control Flow 1. Statements and Blocks 2. If-Else 3. Else-If 4. Switch 5. Loops - While and For 6. Loops - Do-While 7. Break and Continue 8. Goto and labels 4. Chapter 4: Functions and Program Structure 1. Basics of Functions 2. Functions Returning Non-integers 3. External Variables 4. Scope Rules 5. Header Files 6. Static Variables 7. Register Variables 8. Block Structure 9. Initialization 10. Recursion 11. The C Preprocessor 1. File Inclusion 2. Macro Substitution 3. Conditional Inclusion 5. Chapter 5: Pointers and Arrays 1. Pointers and Addresses 2. Pointers and Function Arguments 3. Pointers and Arrays 4. Address Arithmetic 5. Character Pointers and Functions 6. Pointer Arrays; Pointers to Pointers 7. Multi-dimensional Arrays 8. Initialization of Pointer Arrays 9. Pointers vs. Multi-dimensional Arrays 10. Command-line Arguments 11. Pointers to Functions 12. Complicated Declarations 6. Chapter 6: Structures 1. Basics of Structures 2. Structures and Functions 3. Arrays of Structures 4. Pointers to Structures 5. Self-referential Structures 6. Table Lookup 7. Typedef 8. Unions 9. Bit-fields 7. Chapter 7: Input and Output 1. Standard Input and Output 2. Formatted Output - printf 3. Variable-length Argument Lists 4. Formatted Input - Scanf 5. File Access 6. Error Handling - Stderr and Exit 7. Line Input and Output 8. Miscellaneous Functions 1. String Operations 2. Character Class Testing and Conversion 3. Ungetc 4. Command Execution 5. Storage Management 6. Mathematical Functions 7. Random Number generation 8. Chapter 8: The UNIX System Interface 1. File Descriptors 2. Low Level I/O - Read and Write 3. Open, Creat, Close, Unlink 4. Random Access - Lseek 5. Example - An implementation of Fopen and Getc 6. Example - Listing Directories 7. Example - A Storage Allocator l Appendix A: Reference Manual 1. Introduction 2. Lexical Conventions 3. Syntax Notation 4. Meaning of Identifiers 5. Objects and Lvalues 6. Conversions 7. Expressions 8. Declarations 9. Statements 10. External Declarations 11. Scope and Linkage 12. Preprocessor 13. Grammar l Appendix B: Standard Library 1. Input and Output: 1. File Operations 2. Formatted Output 3. Formatted Input 4. Character Input and Output Functions 5. Direct Input and Output Functions 6. File Positioning Functions 7. Error Functions 2. Character Class Tests: 3. String Functions: 4. Mathematical Functions: 5. Utility Functions: 6. Diagnostics: 7. Variable Argument Lists: 8. Non-local Jumps: 9. Signals: 10. Date and Time Functions: 11. Implementation-defined Limits: and l Appendix C: Summary of Changes
Platform: | Size: 570630 | Author: wukoo0901@qq.com | Hits:

[Dialog_WindowB树的图形化显示插入删除

Description: 使用C++编写成的关于B-树的插入和删除,动态展示变化。
Platform: | Size: 134706 | Author: Superstar4 | Hits:

[VC/MFC高质量C++C 编程指南.pdf

Description: 第 1 章 文件结构 1.1 版权和版本的声明 1.2 头文件的结构 . 1.3 定义文件的结构 1.4 头文件的作用 1.5 目录结构 第 2 章 程序的版式 2.1 空行 2.2 代码行 2.3 代码行内的空格 2.4 对齐 2.5 长行拆分 2.6 修饰符的位置 2.7 注释 2.8 类的版式 第 3 章 命名规则. 3.1 共性规则 3.2 简单的 WINDOWS 应用程序命名规则 3.3 简单的 UNIX 应用程序命名规则 第 4 章 表达式和基本语句 第 5 章 常量.... 第 6 章 函数设计 第 7 章 内存管理 第 8 章 C++函数的高级特性 第 9 章 类的构造函数、析构函数与赋值函数. 第 10 章 类的继承与组合 第 11 章 其它编程经验 附录 A :C++/C 代码审查表 附录 B :C++/C 试题 附录 C :C++/C 试题的答案与评分标准
Platform: | Size: 266169 | Author: ezhong0812 | Hits:

[Books数据结构(C#语言版)

Description: 数据结构(C#语言版) 计算机程序语言书: 目 录 第1章 绪论 1 1.1 数据结构 1 1.1.1 学习数据结构的必要性 1 1.1.2 基本概念和术语 2 1.2 算法 7 1.2.1 算法的特性 7 1.2.2 算法的评价标准 8 1.2.3 算法的时间复杂度 9 1.3 数学预备知识 11 1.3.1 集合 11 1.3.2 常用的数学术语 11 1.3.3 对数 12 1.3.4 递归 12 1.4 C预备知识 13 1.4.1 指针 13 1.4.2 结构体 14 1.5 C#预备知识 15 1.5.1 接口 15 1.5.2 泛型编程 19 本章小结 24 习题 25 第2章 线性表 27 2.1 线性表的逻辑结构 27 2.1.1 线性表的定义 27 2.1.2 线性表的基本操作 28 2.2 顺序表 30 2.2.1 顺序表的定义 30 2.2.2 顺序表数据关系的语言描述 31 2.2.3 顺序表数据操作的语言描述 32 2.2.4 顺序表应用举例 42 2.3 单链表 46 2.3.1 单链表的定义 47 2.3.2 单链表数据关系的语言描述 48 2.3.3 单链表数据操作的语言描述 50 2.3.4 单链表应用举例 65 2.4 其他链表 73 2.4.1 双向链表 73 2.4.2 循环链表 76 本章小结 76 习题 77 第3章 栈和队列 78 3.1 栈 78 3.1.1 栈的定义及基本运算 78 3.1.2 顺序栈的存储和运算实现 80 3.1.3 链栈的存储和运算实现 85 3.1.4 栈的应用举例 90 3.2 队列 96 3.2.1 队列的定义及基本运算 96 3.2.2 循环顺序队列的存储和运算 实现 98 3.2.3 链队列的存储和运算实现 106 3.2.4 队列的应用举例 111 本章小结 113 习题 113 第4章 串和数组 115 4.1 串 115 4.1.1 串的基本概念及基本运算 115 4.1.2 串存储及基本运算实现 116 4.1.3 串的基本操作的实现 120 4.1.4 模式匹配 125 4.2 数组 131 4.2.1 数组的逻辑结构 131 4.2.2 数组的内存映像 132 本章小结 133 习题 133 第5章 树和二叉树 134 5.1 树 134 5.1.1 树的定义 134 5.1.2 树的相关术语 135 5.1.3 树的逻辑表示 136 5.1.4 树的基本操作 137 5.2 二叉树 138 5.2.1 二叉树的定义 138 5.2.2 二叉树的性质 139 5.2.3 二叉树的存储结构 141 5.2.4 二叉链表存储结构的语言 描述 143 5.2.5 二叉树的遍历 146 5.2.6 线索二叉树 150 5.3 树与森林 153 5.3.1 树的存储 153 5.3.2 树、森林与二叉树的转换 157 5.3.3 树和森林的遍历 160 5.4 哈夫曼树 160 5.4.1 哈夫曼树的基本概念 160 5.4.2 哈夫曼树的实现 162 5.4.3 哈夫曼编码 166 5.5 二叉树的应用举例 167 本章小结 171 习题 172 第6章 图 174 6.1 图的基本概念 174 6.1.1 图的定义 174 6.1.2 图的基本术语 175 6.1.3 图的基本操作 178 6.2 图的存储结构 179 6.2.1 邻接矩阵 179 6.2.2 邻接表 187 6.3 图的遍历 199 6.3.1 深度优先遍历 199 6.3.2 广度优先遍历 202 6.4 图的应用 205 6.4.1 最小生成树 205 6.4.2 最短路径 210 6.4.3 拓扑排序 216 本章小结 218 习题 219 第7章 排序 221 7.1 基本概念 221 7.2 简单排序方法 222 7.2.1 直接插入排序 222 7.2.2 冒泡排序 225 7.2.3 简单选择排序 226 7.3 快速排序 229 7.4 堆排序 233 7.5 希尔排序 240 7.6 表插入排序 242 7.7 归并排序 247 7.8 树型选择排序 251 7.9 基数排序 252 7.9.1 多关键码排序 252 7.9.2 链式基数排序 253 7.10 各种排序方法的比较与讨论 255 本章小结 256 习题 257 第8章 查找 259 8.1 基本概念和术语 259 8.2 静态查找表 259 8.2.1 顺序查找 260 8.2.2 有序表的折半查找 261 8.2.3 索引查找 265 8.3 动态查找表 266 8.3.1 二叉排序树 266 8.3.2 平衡二叉树 276 8.3.3 B-树和B+树 278 8.4 哈希表 285 8.4.1 哈希表的基本概念 286 8.4.2 常用的哈希函数构造方法 286 8.4.3 处理冲突的方法 288
Platform: | Size: 1345925 | Author: lovevicky | Hits:

[VC/MFCPattern Recognition with Neural Networks in C++

Description: 作者为Abhijit S. Pandya 与Robert B. Macy
Platform: | Size: 13865740 | Author: ureckon@163.com | Hits:

[ELanguageC编译器源代码(超级牛b)

Description: C编译器源代码(超级牛b)-C compiler source code (super cow b)
Platform: | Size: 349184 | Author: 林子 | Hits:

[Graph program三次B样条曲线

Description: 用C语言编写的三次B样条曲线源代码!-C language prepared by the cubic B-spline curves source code!
Platform: | Size: 1024 | Author: 纯净水 | Hits:

[Voice CompressITU-T G.729 Source code ITU-T G.729 Annex B ANSI-

Description: ITU-T G.729 Source code ITU-T G.729 Annex B ANSI-C Source Code
Platform: | Size: 98304 | Author: 叶春 | Hits:

[OtherC++B定时关机

Description: 这是我自己用C++BUILDER做的一个定时关机的程序-This is for my own use C BUILDER do a regular shutdown procedures
Platform: | Size: 357376 | Author: | Hits:

[Graph Drawing二次B样条曲线的绘制

Description: 从用c语言编出程序要用文件输入数据。 绘制二次B样条曲线的表达式: P(0,2)(t)=P0*G(0,2)(t)+P1*G(1,2)(t)+P2*G(2,2)(t) 0<=t<=1-from using language out to document procedures with the input data. Drawing II B-spline curves of expression : P (0,2) (t) = P0* G (0,2) (t)* G P1 (1,2) (t)* P2 G (2,2) (t ) 0lt; = TLT; = 1
Platform: | Size: 1024 | Author: 李南宁 | Hits:

[CSharpOA开原

Description: 用C#编写的B/S,OA系统,没有解压密码,源码开放!有兴趣者可与我联系!C#- B/S compiles which with C#, OA system, has not decompressed the password, the source code opening! Some interests may relate with me! C#
Platform: | Size: 4421632 | Author: | Hits:

[source in ebookB-tree(c++)

Description: B-树演示程序(vc++)可执行程序.rar
Platform: | Size: 3355648 | Author: liulihao | Hits:

[CSharp06174828184

Description: C# B/S结构的源码,绝对能用没有加密没有病毒,请放心使用-C# B/S structure of the source is absolutely no encryption can be used free of viruses, please rest assured that the use of
Platform: | Size: 3442688 | Author: 冯推发 | Hits:

[Data structsB-Tree

Description: 用c++实现的b-tree数据结构,小程序~(a b-tree program with c++)
Platform: | Size: 2048 | Author: cx21312 | Hits:

[Windows Develop矩阵计算C语言版

Description: 一个矩阵计算器 进入程序 输入A=[1 2 3 4;5 6 7 8; 9 10 11 12] 【横向一行】 输入B=X X X 输入C=X X X 输入D=X X X 支持多项矩阵加减乘,即E=AC,E=AD-C+B,E=ADB-C这一类的,矩阵在6*6以内,项数不定,加减乘运算顺序不定 输入E=A*B+C-D【例子】 输出矩阵形式的答案 E= x x x…… x x x…… x x x……(Matrix calculation for C language)
Platform: | Size: 15360 | Author: Master_King | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net