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

原创 02-线性结构3 Reversing Linked List

未完成版本:有多余结点不在链表上-段错误#include <stdio.h>#include <stdlib.h>struct node{ int data; int nextaddress; int address; struct node* next;}node;typedef struct node* linklist;linklis...

2019-04-15 15:31:56 197

原创 05-树8 File Transfer

#include <stdio.h>#include <stdlib.h>#define MAXSIZE 10000typedef int elemtype;typedef int setname;typedef elemtype settype[MAXSIZE];setname find(settype s,elemtype x){// for(;s[x]...

2019-04-15 15:23:42 149

原创 06-图1 列出连通集

#include <stdio.h>#include <stdlib.h>#define maxsize 10int visit[maxsize];int visit2[maxsize];typedef struct LGraph{ int Vertex[maxsize]; int Edge[maxsize][maxsize]; int...

2019-04-15 15:22:54 180

原创 06-图2 Saving James Bond - Easy Version

#include <stdio.h>#include <math.h>#define maxsize 100int visit[maxsize];typedef struct{ double x,y;}coored;int firstjump(double distance,coored point){ //判断第一跳是否成功 return ...

2019-04-15 15:22:14 151

原创 03-树3 Tree Traversals Again

#include <stdio.h>struct node{ int tag; int num;};int main(){ int n; scanf("%d",&n); int flag=0; struct node stack[30]; int size=0; for(int i=0;i<2*n;i++){ char ...

2019-04-15 15:21:09 96

空空如也

空空如也

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

TA关注的人

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