自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 树的非递归(前序,中序,后序)

#include #include typedef struct _Tree {  int nValue;  struct _Tree* pLeft;  struct _Tree* pRight; }Tree;    //  树的节点 void CreateTree(Tree* *tree) {  (*tree) = (Tree*)malloc(sizeof(Tree))

2014-08-28 19:49:00 473

原创 树的层遍历

#include #include typedef struct _Tree {  int nValue;  struct _Tree* pLeft;  struct _Tree* pRight; }Tree;    //  树的节点 void CreateTree(Tree* *tree) {  (*tree) = (Tree*)malloc(sizeof(Tree))

2014-08-28 19:45:17 412

原创 树的队列广度遍历

#include #include typedef struct _Tree {  int nValue;  struct _Tree* pLeft;  struct _Tree* pRight; }Tree; void CreateTree(Tree* *tree) {  (*tree) = (Tree*)malloc(sizeof(Tree));  (*tree)-

2014-08-28 19:30:21 418

原创 树的递归遍历(前序,中序,后序)

#include #include  typedef struct _Tree { int nValue; struct _Tree* pLeft; struct _Tree* pRight; }Tree; void CreateTree(Tree* *tree) { (*tree) = (Tree*)malloc

2014-08-28 18:31:22 439

原创 两个 栈 实现队列

#include #include typedef struct _Stack {  int nValue;  struct _Stack* pNext; }Stack; typedef struct _Queue {  Stack* pTopOne;  Stack* pTopTwo; }Queue;   void PushStack(Stack** pTop,i

2014-08-26 21:34:10 295

原创 队列

#include #include typedef struct STACK {  int nValue;  struct STACK *next; }stack; stack *pTopOne=NULL; stack *pTopTwo=NULL; void pushStack(stack **pTop,int nValue) {  stack *temp=(stack *)

2014-08-21 12:38:09 289

转载 贪吃蛇

#include #include #include using namespace std; //------豆的 结构体------ typedef struct BeanNode {  int x;  int y; }BeanNode; //------蛇的 结构体------ typedef struct snakeNode {  int x;  int y;

2014-08-05 13:10:32 425

原创 WINDOWs

#include #include"resource.h" LRESULT __stdcall wndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM  lParam); int WINAPI WinMain( HINSTANCE hInstance,  HINSTANCE hPrevInstance,  LPSTR lpCmdLine,  in

2014-08-01 09:08:54 370

1.6 Golang在阿里巴巴调度系统Sigma中的实践.pdf

1.6 Golang在阿里巴巴调度系统Sigma中的实践。

2020-04-19

栈和队列.rar

栈队列,两个栈实现队列,两个队列实现栈,栈和队列的一些简单应用

2016-01-14

深度优先搜索

哈理工几道深度优先搜索例题,泉水下山

2015-08-15

排序树 变成双向链表

排序树 变成双向链表排序树

2014-09-14

排序树 双向 循环链表

排序树 双向 循环链表

2014-08-31

空空如也

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

TA关注的人

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