资源列表
LogHelper
- 用来写程序运行日志到log文件,如果日志文件目录log不存在则自动创建,当文件达到1M则自动分割。(Used to write the program running log to the log file.)
Desktop
- int y; // define y as an integer variable y = 4; // r-value 4 evaluates to 4, which is then assigned to l-value y y = 2 + 5; // r-value 2 + r-value 5 evaluates to r-value 7, which is then assigned to l-value y int x; // define x
sb-1-d620
- 无人机采用超声波,实现左右前后上下全方位壁障!(UAV uses ultrasonic to realize left and right forward and backward omni directional barrier!)
JSONHelp
- 基于Javascr iptSerializer的JSON处理工具,包含了添加,获取元素等常用方法(Javascr iptSerializer based JSON processing tools, including the addition, access to elements and other commonly used methods)
button.txt
- DataGridView 在一个单元格添加两个按钮(Add two buttons in a cell)
RSA&DES_Implement
- 本代码使用C#语言实现了RSA和DES算法,其中通过分段处理的方式解决了RSA对较大数据的加解密。(This code block implements the algorithm of RSA & DES,and we resolved the encryption and decryption of data with large size on RSA by segmental processing.)
2
- c语言词法分析 文件读写操作 生成文件保存(C language word analysis file read and write operation generation file save)
C# 的排列组合类
- 算法:排列组合类 调用方法如下: // // 1.GetPermutation(T[], startIndex, endIndex) // 对startIndex到endIndex进行排列,其余元素不变 // // 2.GetPermutation(T[]) // 返回数组所有元素的全排列 // // 3.GetPermutation(T[], n) // 返回数组中n个元素的排列 // // 4.GetCombination(T[], n) // 返回数组中n个元素的
Program
- C#本质论基础-面向过程 统计文件、目录范例代码(C# Essentialism (oriented process): count file&directory example code.)
str终版
- 统计单词出现的次数,并按照出现的次数排序(The number of occurrences of statistical words)
数据库plim
- 简单易懂的普利姆法求最小生成树的代码,新手可参考(Plymmerm easy to understand minimum spanning tree code, novice can refer to this code)
counter
- 定义一个类,类名为CounterType。这个类的对象用于计数,记录一个非负的整数。为该类写一个默认构造函数,它能将计数器置0;再写一个构造函数,它接收一个参数,用于将计数器设为由参数指定的值。编写两个成员函数,分别使计数能够递增1和递减1。确保任何成员函数都不允许计数器为负值。成员函数void reset( );能在任何时候将计数器的值重置为0。编写两个成员函数,一个返回当前计数器的值,另一个将计数器的值输出到一个流,这个用于输出的函数有一个ostream类型的形式参数(被调用时,实际参数可以