自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 c语言——表达式的计算

#include "stack.h" //提供栈及其基本操作函数 #include "mymath.h" //提供阶乘函数 #include #include #define BUFFSIZE 128 #define CHARSIZE 10 #define PI 3.141593 #define E 2.718282 #define PUSH_OPE_CON (Stack_Top(&oper

2017-10-25 20:45:16 1036

原创 数据结构——关于栈的一些认识

栈是数据结构中最常见的一种类型之一,

2017-10-21 22:39:45 207

原创 double list

#include #include #include #define ITYPE int #define EMPTY 0 typedef struct Note {  struct Note *next;  struct Note *prev;  ITYPE data; }note; typedef struct List {  note *head; }list

2017-10-21 21:32:22 398

原创 mybash

#include #include #include #include #include #define path_length 50 #define order_length 128 #define order_num 64 #define empty 0 #define chars 1 void prompt() {     struct passwd *pw

2017-10-21 21:30:51 302

原创 stack

#include #include #include #include #define ITYPE float #define STACKINC 2 #define STACKSIZE 100 #define EMPTY 0 #define FULL -1 typedef enum{false, true}bool; typedef struct Stack {  I

2017-10-21 21:28:57 383

空空如也

空空如也

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

TA关注的人

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