CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - c B
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
Linux-Unix
Exploit
Scanner
Crack Hack
CA auth
Linux driver
Search - c B - List
[
OS program
]
superXcopy
DL : 0
Xcopy 选项: /a 包含属性 /b 备份模式(只拷贝设置为归档属性的文件) /c 把目标文件的创建日期设置为当前文件日期 /e 包含创建空目录 /f 刷新已存在文件(只拷贝已存在的文件) /h 拷贝隐含文件 /p 对每个文件/目录都进行确认 /q 简洁模式 /r 多盘拷贝(如果目标盘为A-E且容量小于2M时会被提问) /s 包含子目录 /u 更新模式(只拷贝新文件) /v 校检目标文件,速度缓慢 /w 窗口模式 /x 文件名 不包括该文件名的文件(可使用通配符) /y 目录名 不包含该目录名的文件(同/x,隐含/s参数)-Xcopy options : / attribute contains a / b backup mode (only copy archive attribute set to the document) / c target date of the founding documents set to the current date of the document / e consists of creating empty directory / f update existing documents (only copy of the document has been in existence) / h copy hidden files / p for each file / directory have confirmation / q concise model / r multi-disk copies (if the target set for A-E a capacity of less than 2M will be questions) / s contains subdirectories / u update mode (only copy new files) / v calibration target file, slow speed / w window mode / x documents were not included in the file name in the paper (can use wildcards) / y name of the directory does not contain the name of the directory the file (with the / x, implied / s
Date
: 2008-10-13
Size
: 34.14kb
User
:
sunwei
[
OS program
]
RedirectSource
DL : 0
This control makes it possible to redirect the stdin/stdout of a console-application to your program. It s even possible to redirect MS-DOS commands to your application. I ve written this project in Visual C++ 6.0 with ATL 3.0, because you can t use multithreading in Visual Basic. Properties of the Application -This control makes it possible to redirect the stdin / stdout of a console-application to y our program. It's even possible to redirect MS-D OS commands to your application. I've written th is project in Visual C 6.0 with ATL 3.0, because you can not use multithreading in Visual B asic. Properties of the Application
Date
: 2008-10-13
Size
: 53.89kb
User
:
changming
[
OS program
]
boost_source_code
DL : 0
正则表达式,可以与POSIX API和Perl语言处理正则表达式的功能相媲美,而且还能支持各种字符类型(如char、wchar_t,甚至还可以是自定义字符类型); 多线程,想了很久的跨平台多线程库了; 数据结构“图”,再加上即将加入标准的hash_set、hash_map、hash_multiset、hash_multimap等等(事实上不少STL实作,如SGI STL,已经支持以上数据结构),C++对数据结构的支持已近完备; python,没错,对Python语言的支持; 智能指针,与std::auto_ptr一起善加使用,可杜绝内存泄露,效率更不可和垃圾收集机制GC同日而语; 更有循环冗余的CRC、可轻松定义返回多个值函数的元组tuple、可容纳不同类型值的any、对标准库各方面的补充…… 还在迅速扩大中,部分内容有望进入C++标准库…… -regular expression. with the POSIX API and Perl language processing Regular expressions are comparable to the function, but also support various types of characters (such as char and wchar_t. they can even be defined character type); Multithreading, for a long time to cross-platform and multi-threaded library; Data Structure "map", coupled with the imminent accession to the standards hash_set, hash_map. hash_multiset. hash_multimap etc. (In fact, many STL implementations, such as the SGI STL, support has been above data structure), C data structures to support the nearly complete; python, it is true that right Python language support; Smart indicator, std : : auto_ptr together to make good use, Memory can stop leaking, and not more efficient garbage collection mechanism GC same b
Date
: 2008-10-13
Size
: 3.33mb
User
:
hnycmx
[
OS program
]
Desktop
DL : 0
Desktop 保护程序及源代码-此小程序主要是在登陆后运行的另外一个需要输入密码的桌面保护程序,在输入密码之后方可进入系统。 密码是随机产生的数字,运算方法为当产生一个五为的随机数a,b,c,d,e当不足五为时默认为0,使输入的 数字等于(a+c+e)*(b+d)*a-a-e便可以进入系统。当不需要的时候则在注册表的run里面删除此注册项 目即可。
Date
: 2008-10-13
Size
: 177.04kb
User
:
baogq
[
OS program
]
Ax=b
DL : 0
在C++环境下通过编程输入距阵实现列主元高斯消元法解方程组.
Date
: 2008-10-13
Size
: 1.06kb
User
:
王立磊
[
OS program
]
DataMappingFiles
DL : 0
反射的应用范例。 获取dll中的类,并且为各个类的属性建造字段描述类。 比如,如果类A,有a b c d四个属性(get,set),那么,将对应生成静态类AMap,里面包含a b c d四个常量,常量和A类的属性名相同。
Date
: 2008-10-13
Size
: 17.48kb
User
:
刘光辉
[
OS program
]
filesystem
DL : 0
用c#实现的在内存中模拟的简易文件系统,整个文件系统可保存至硬盘。系统设计参照fat格式。文件系统提供的操作: a) 格式化 b) 创建子目录 c) 删除子目录 d) 显示目录 e) 更改当前目录 f) 创建文件 g) 打开文件 h) 关闭文件 i) 写文件 j) 读文件 k) 删除文件
Date
: 2008-10-13
Size
: 790.57kb
User
:
twofox
[
OS program
]
逆波兰表达式
DL : 0
计算用运算符后缀法表示的表达式的值。后缀表达式也称逆波兰表达式,比中缀表达式计算起来更方便简单些,中缀表达式要计算就存在着括号的匹配问题,所以在计算表达式值时一般都是先转换成后缀表达式,再用后缀法计算表达式的值。如:表达式(a+b*c)/d-e用后缀法表示应为abc*+d/e-。只考虑四则算术运算,且假设输入的操作数均为1位十进制数(0—9),并且输入的后缀形式表达式不含语法错误-calculated Operators suffix France said the value of the expression. Suffix expression also called inverse Poland expression, which is made up of formulas can be more convenient for some simple, ordinary expression to calculate the brackets on the existence of the matching problem, in the calculation of expression values are generally first converted into a suffix expression, reuse suffix calculated the value of the expression. Such as : The expression (a, b * c) / d-e suffix method used to be said for abc * d/e-. Consider only four arithmetic operations and the operation of input assumptions are a few decimal (0-9), and enter the suffix-free form expression syntax errors
Date
: 2008-10-13
Size
: 1.42kb
User
:
刘一
[
OS program
]
逆波兰表达式
DL : 0
计算用运算符后缀法表示的表达式的值。后缀表达式也称逆波兰表达式,比中缀表达式计算起来更方便简单些,中缀表达式要计算就存在着括号的匹配问题,所以在计算表达式值时一般都是先转换成后缀表达式,再用后缀法计算表达式的值。如:表达式(a+b*c)/d-e用后缀法表示应为abc*+d/e-。只考虑四则算术运算,且假设输入的操作数均为1位十进制数(0—9),并且输入的后缀形式表达式不含语法错误-calculated Operators suffix France said the value of the expression. Suffix expression also called inverse Poland expression, which is made up of formulas can be more convenient for some simple, ordinary expression to calculate the brackets on the existence of the matching problem, in the calculation of expression values are generally first converted into a suffix expression, reuse suffix calculated the value of the expression. Such as : The expression (a, b* c)/d-e suffix method used to be said for abc* d/e-. Consider only four arithmetic operations and the operation of input assumptions are a few decimal (0-9), and enter the suffix-free form expression syntax errors
Date
: 2025-12-21
Size
: 1kb
User
:
刘一
[
OS program
]
superXcopy
DL : 0
Xcopy 选项: /a 包含属性 /b 备份模式(只拷贝设置为归档属性的文件) /c 把目标文件的创建日期设置为当前文件日期 /e 包含创建空目录 /f 刷新已存在文件(只拷贝已存在的文件) /h 拷贝隐含文件 /p 对每个文件/目录都进行确认 /q 简洁模式 /r 多盘拷贝(如果目标盘为A-E且容量小于2M时会被提问) /s 包含子目录 /u 更新模式(只拷贝新文件) /v 校检目标文件,速度缓慢 /w 窗口模式 /x 文件名 不包括该文件名的文件(可使用通配符) /y 目录名 不包含该目录名的文件(同/x,隐含/s参数)-Xcopy options :/attribute contains a/b backup mode (only copy archive attribute set to the document)/c target date of the founding documents set to the current date of the document/e consists of creating empty directory/f update existing documents (only copy of the document has been in existence)/h copy hidden files/p for each file/directory have confirmation/q concise model/r multi-disk copies (if the target set for A-E a capacity of less than 2M will be questions)/s contains subdirectories/u update mode (only copy new files)/v calibration target file, slow speed/w window mode/x documents were not included in the file name in the paper (can use wildcards)/y name of the directory does not contain the name of the directory the file (with the/x, implied/s
Date
: 2025-12-21
Size
: 34kb
User
:
sunwei
[
OS program
]
MyTC
DL : 0
我自己用vb6作的一个C源代码编辑器 有一个关于字体的问题没有解决,请大家帮帮忙!-my own use VB6 one for the C source code editor is a font of the problems have not been solved, please help out!
Date
: 2025-12-21
Size
: 1.73mb
User
:
MarksMan
[
OS program
]
RedirectSource
DL : 0
This control makes it possible to redirect the stdin/stdout of a console-application to your program. It s even possible to redirect MS-DOS commands to your application. I ve written this project in Visual C++ 6.0 with ATL 3.0, because you can t use multithreading in Visual Basic. Properties of the Application -This control makes it possible to redirect the stdin/stdout of a console-application to y our program. It's even possible to redirect MS-D OS commands to your application. I've written th is project in Visual C 6.0 with ATL 3.0, because you can not use multithreading in Visual B asic. Properties of the Application
Date
: 2025-12-21
Size
: 54kb
User
:
changming
[
OS program
]
boost_source_code
DL : 0
正则表达式,可以与POSIX API和Perl语言处理正则表达式的功能相媲美,而且还能支持各种字符类型(如char、wchar_t,甚至还可以是自定义字符类型); 多线程,想了很久的跨平台多线程库了; 数据结构“图”,再加上即将加入标准的hash_set、hash_map、hash_multiset、hash_multimap等等(事实上不少STL实作,如SGI STL,已经支持以上数据结构),C++对数据结构的支持已近完备; python,没错,对Python语言的支持; 智能指针,与std::auto_ptr一起善加使用,可杜绝内存泄露,效率更不可和垃圾收集机制GC同日而语; 更有循环冗余的CRC、可轻松定义返回多个值函数的元组tuple、可容纳不同类型值的any、对标准库各方面的补充…… 还在迅速扩大中,部分内容有望进入C++标准库…… -regular expression. with the POSIX API and Perl language processing Regular expressions are comparable to the function, but also support various types of characters (such as char and wchar_t. they can even be defined character type); Multithreading, for a long time to cross-platform and multi-threaded library; Data Structure "map", coupled with the imminent accession to the standards hash_set, hash_map. hash_multiset. hash_multimap etc. (In fact, many STL implementations, such as the SGI STL, support has been above data structure), C data structures to support the nearly complete; python, it is true that right Python language support; Smart indicator, std : : auto_ptr together to make good use, Memory can stop leaking, and not more efficient garbage collection mechanism GC same b
Date
: 2025-12-21
Size
: 3.34mb
User
:
hnycmx
[
OS program
]
Ax=b
DL : 0
在C++环境下通过编程输入距阵实现列主元高斯消元法解方程组.-In the C++ Environment to achieve through the programming input matrix PCA out Gauss elimination solution of equations.
Date
: 2025-12-21
Size
: 1kb
User
:
[
OS program
]
ADOTable
DL : 0
基于C++BUILDER环境,初学者很适用,代码简单易懂,对学习和借鉴有很大好处,可移植很强,我测试的版本是BCB60,ADOTable源代码-Based on the C++ BUILDER environment is applicable for beginners, easy-to-understand code, and has a lot to learn from the benefits of highly portable, I tested version BCB60, ADOTable source code
Date
: 2025-12-21
Size
: 591kb
User
:
paope
[
OS program
]
filesystem
DL : 0
用c#实现的在内存中模拟的简易文件系统,整个文件系统可保存至硬盘。系统设计参照fat格式。文件系统提供的操作: a) 格式化 b) 创建子目录 c) 删除子目录 d) 显示目录 e) 更改当前目录 f) 创建文件 g) 打开文件 h) 关闭文件 i) 写文件 j) 读文件 k) 删除文件 -With c# Realize the simulation in memory of the simple file system, the entire file system can be stored to the hard disk. System design with reference to fat format. File system operation to provide: a) format b) create a subdirectory c) delete the subdirectory d) show the directory e) Change the current directory f) create a file g) open the file h) close the file i) Write a document j) reading a document k ) delete files
Date
: 2025-12-21
Size
: 790kb
User
:
twofox
[
OS program
]
b
DL : 0
动物运动会实验报告的源代码项目,基于C++编写,目的主要是让C++编程爱好者掌握“指针”的概念,理解链表的结构特点;掌握动态空间的使用,熟练包含指针成员的类的实现;实践OOP中的继承性及多态性并体会其优点 -The Animal Games experimental report source projects, write based on C++, the main purpose of grasp the concept of the " pointer" is to let C++ programming enthusiasts, understanding the structural characteristics of the linked list master the use of dynamic space, skilled contains pointer members of the class implementation practice OOP inheritance and polymorphism and to appreciate its advantages
Date
: 2025-12-21
Size
: 2kb
User
:
吴雪飞
[
OS program
]
B
DL : 0
源码,编程语言学习,C语言,适合C语言学习者-Source code, the programming language to learn, C language, suitable for C language learners
Date
: 2025-12-21
Size
: 6kb
User
:
吕长艳
[
OS program
]
A-B
DL : 0
数据结构C语言版 链表A-B具体实现,简单易理解-Linked list data structure C language version of AB concrete realization, simple and easy to understand
Date
: 2025-12-21
Size
: 1kb
User
:
邹慧霞
[
OS program
]
B-Trees-c-code-and-instructions
DL : 0
B树的实现代码,其中有大量的注释,可以为初学者带来方便,此代码仅供参考。-B-tree implementation code, which has a lot of notes, can bring convenience for the beginner, this code is for reference only.
Date
: 2025-12-21
Size
: 20kb
User
:
sss316
«
1
2
3
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.