自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 课程设计代码

#include #include #include #include using namespace std; class consumer; class YH { public: YH(); void built_account(); //建立账户 void delet_account(); //销户 void transfer(int); //

2015-01-14 22:58:36 796 1

原创 第六章 图

2014-12-30 13:10:49 387 1

原创 第五章 树和二叉树

2014-12-30 12:41:42 334 1

原创 第四章 字符串和多维数组

2014-12-30 12:23:04 348 1

原创 第三章 栈和队列

2014-12-30 12:04:01 390 1

原创 Linklist

#ifndef Linklist_H //避免重复包含Linklist.h头文件 #define Linklist_H template //定义单链表的结点 struct Node { DataType data; Node *next; }; template //类Li

2014-12-05 16:19:31 981 1

原创 Seqlist 代码

#ifndef Seqlist_h       //避免重复包含Seqlist.h头文件 #define Seqlist_h const int maxsize=10;               //线性表最多有10个元素 class Seqlist { public: Seqlist(){length=0;}             //无参构造函数,创建一个空表 S

2014-12-04 22:54:08 1667 1

原创 线性表 第二章

2014-09-21 21:59:34 356 2

原创 和于积

#include using namespace std; template T add(T x,T y) {  T sum;  sum=x+y;  return sum; } template T multi(T a,T b) {  T mul;  mul=a+b;  return mul; } int main() {  int x=2,y=3,a=3,

2014-09-21 21:04:00 279 1

原创 数据结构 第一章

2014-09-19 20:25:39 398 1

空空如也

空空如也

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

TA关注的人

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