自定义博客皮肤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 50typedef 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 170

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

#include#include#define ElemType chartypedef 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 183

原创 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 284

原创 find the most comfortable road

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

2017-07-21 09:10:54 166

原创 Meteor Shower

Meteor ShowerTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 20653 Accepted: 5373DescriptionBessie hears that an extraordinary meteor shower is coming

2017-07-21 08:47:23 624

原创 Out of Hay

Out of HayTime Limit: 1000MS Memory Limit: 65536KTotal Submissions: 17495 Accepted: 6886DescriptionThe cows have run out of hay, a horrible event that must be

2017-07-21 08:25:14 218

原创 Find The Multiple

Find The MultipleTime Limit: 1000MS Memory Limit: 10000KTotal Submissions: 32523 Accepted: 13602 Special JudgeDescriptionGiven a positive integer n, write

2017-07-20 15:04:35 154

原创 小希的迷宫

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

2017-07-20 10:45:07 252

空空如也

空空如也

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

TA关注的人

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