自定义博客皮肤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)
  • 收藏
  • 关注

原创 括号匹配

#include #define Stack_Size 50 typedef struct {     char elem[Stack_Size];     int top; } SeqStack; void InitStack(SeqStack *S)//初始栈 {     S->top = -1; } bool Push(SeqStack *S,char ch)//进栈

2017-10-21 11:13:19 179

原创 二叉树的前序,中序,后序遍历

#include #include #define ElemType char typedef struct Node { char data; struct Node*LChild; struct Node*RChild; } BiTNode,*BiTree; void GreateBiTree(BiTree *root) { char ch; ch=ge

2017-10-21 10:45:53 198

原创 Binary Tree Traversals

A binary tree is a finite set of vertices that is either empty or consists of a root r and two disjoint binary trees called the left and right subtrees. There are three most important ways in which th

2017-10-21 10:15:37 296

原创 find the most comfortable road

find the most comfortable road Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 7640    Accepted Submission(s): 3218 Problem Descriptio

2017-07-21 09:10:54 177

原创 Meteor Shower

Meteor Shower Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 20653   Accepted: 5373 Description Bessie hears that an extraordinary meteor shower is coming

2017-07-21 08:47:23 642

原创 Out of Hay

Out of Hay Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 17495   Accepted: 6886 Description The cows have run out of hay, a horrible event that must be

2017-07-21 08:25:14 230

原创 Find The Multiple

Find The Multiple Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 32523   Accepted: 13602   Special Judge Description Given a positive integer n, write

2017-07-20 15:04:35 165

原创 小希的迷宫

小希的迷宫 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 51831    Accepted Submission(s): 16152 Problem Description 上次Gardon的迷宫城堡小希玩了很

2017-07-20 10:45:07 259

空空如也

空空如也

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

TA关注的人

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