自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (5)
  • 收藏
  • 关注

空空如也

JAVA 版的算法

这个是用java语言写的fp-growth算法,代码完全的,可读性很好的!

2012-10-22

C++版的fp-growth算法

是用C++语言编写的FP算法,代码可读性好,而且可以直接可以运行的!

2012-10-22

操作系统同步机构实验

操作系统实验4同步机构,能够运行的,而且有完整的实验报告形式

2011-11-16

C++表达式求值12

#include <iostream> #include <math.h> #include <iomanip> using namespace std; typedef struct oprt // 存储操作符 { char op; struct oprt * link; } OPRT; typedef struct oprd // 存储操作数 { double num; struct oprd * link; } OPRD; /* 全局变量 */ OPRT * top_oprt = NULL; // 设置存取操作符的栈顶为空 OPRD * top_oprd = NULL; // 设置存取操作数的栈顶为空 /* 函数声明 */ void push_oprt(char c); void push_oprd(double num);

2010-12-17

表达式的求解,可以是多位数和小数

#include using namespace std; const int MAX_SIZE = 100; //堆栈类 template class Stack { private: Type list[MAX_SIZE]; int top;//标记 public: Stack(); void Push(const Type & a);//入栈 Type Pop();//出栈 void Clear();//清空栈 Type GetTop();//获取栈顶元素 bool IsEmpty()const;//判断堆栈是否为空 bool IsFull()const;//判断堆栈是否满 };

2010-12-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除