-
Yakunchikov
Navier-Stokes Equation in C++
- 2010-11-18 18:27:46下载
- 积分:1
-
LL(1)08281085
LL(1)预测分析法程序,打开事先存好的文件,按行分析程序,并给出分析栈、余留符号串等内容(LL (1) forecast analysis program, open the file in advance a good memory, by line analysis program, and gives analysis of the stack, the remaining symbol string, etc.)
- 2011-06-02 13:12:07下载
- 积分:1
-
多线程模板
大漠类库最新版 可以去直接拉进去并且使用 也有多线程模板(The latest version of the Desert Class Library can be pulled in and used with multi-threaded templates)
- 2020-06-21 08:40:01下载
- 积分:1
-
ConsoleApplication1
一种获取4位随机数的方法并将获取的随机数显示(A method for obtaining a random number of 4 bits and displaying the random number obtained)
- 2020-06-19 01:40:01下载
- 积分:1
-
charts
说明: dev实现统计图,实现条状柱状的统计图展示和样式自定义(Dev implementation statistical graph)
- 2020-06-17 11:00:02下载
- 积分:1
-
C#读硬盘序列号
C#读硬盘序列号-C# Reading drive serial number
- 2022-02-20 23:31:09下载
- 积分:1
-
fftshift
主要是用c语言实现matlab中的fftshift函数的,(Mainly used c language matlab in fftshift function,)
- 2013-09-22 14:57:46下载
- 积分:1
-
C++Primer Plus第6版中文版源代码
应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术
示例:
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
Item items[MAX]; // holds stack items
int top; // index for top stack item
public:
Stack();
bool isempty() const;
bool isfull() const;
// push() returns false if stack already is full, true otherwise
bool push(const Item & item); // add item to stack
// pop() returns false if stack already is empty, true otherwise
bool pop(Item & item); // pop top into item
};
#endif
- 2022-03-16 20:51:53下载
- 积分:1
-
zuma
祖玛小游戏 实现基本功能 基本算法 给大家参考一下 地图两种圆形 和 直线(Zuma game to achieve the basic functions basic algorithm to refer to two kinds of circular and linear maps)
- 2013-09-02 22:50:26下载
- 积分:1
-
0101.三元运算.VIP课程
说明: C Primer Plus 第6版 中文版电子版(C Primer Plus 6 Chinese Edition Electronic Edition)
- 2020-06-18 12:40:01下载
- 积分:1