自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (1)
  • 问答 (2)
  • 收藏
  • 关注

原创 魔术师发牌问题

#include<stdio.h>#include<stdlib.h>typedef struct node{ int data; struct node *next;}sqlist,*linklist;//生成一个单循环链表linklist CreateLinkList(){ linklist head=NULL; linklist s,r; i

2015-09-28 16:37:11 738

原创 约瑟夫问题

//n个人围圈报数,报m出列,最后剩下的是几号#include <stdio.h>#include <stdlib.h>typedef struct node{ int data; struct node *next;}node;node *create(int n){ node *p=NULL,*head,*s; int i=1; head=(no

2015-09-27 22:53:21 600

原创 循环链表的初始化、插入、删除、返回结点位置、遍历

#include <stdio.h>#include <stdlib.h>//链表存储结构的定义typedef struct CLinkList{ int data; struct CLinkList *next; }node;//初始化循环链表void ds_init(node **pNode){ int item; node *temp; no

2015-09-23 21:26:26 1892

操作系统+数据库+概率论期末复习试卷

期末考试刷题~ 操作系统+数据库+概率论期末复习试卷

2017-01-08

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

TA关注的人

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