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

原创 单链表 电话簿

#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct student{ long long int num; char name[20]; char adress[20]; struct student *next;}STU; STU *creatnew()/...

2018-03-20 10:14:40 1732 1

原创 C语言 栈的创建、插入、删除、遍历

#include<stdio.h>#include<stdlib.h>typedef struct student{ int data; struct student *pnext;}node,*nodes;typedef struct Stack{ nodes top;//栈顶 nodes bottom;//栈底}*stacks,st;void ...

2018-03-19 21:08:44 2496

原创 Python:字符串与数字拼接

python中数字不能像Java一样自动转换为字符串进行拼接,需要借助str()函数进行转化str()函数简介实例: 注意:若出现是因为你正在调用一个不能被调用的变量或对象,请注意前面是否定义了str变量http://www.runoob.com/python/python-func-str.html...

2019-01-23 14:07:49 11986

原创 串的链式存储

#include<stdio.h>#include<stdlib.h>typedef struct String{ char ch; struct String *next;}node,*string;bool IsEmpty(string s){ if(s->next==NULL) return true; else return fals...

2018-03-28 19:55:44 1471

原创 循环队列的相关操作

#include<stdio.h>#include<stdlib.h>typedef struct queue{ int *base; int front; int rear;}Queue;bool full_queue(Queue *s)//判断队列是否已满 { if((s->rear+1)%6==s->front) return tr...

2018-03-25 21:03:18 152

原创 单链表合并

#include<stdio.h>#include<stdlib.h>typedef struct Node{ int data; struct Node *next;}*STU,nodes; STU creat_list(STU head){ STU p1,p; int i,num; head->next=NULL; p1=head; p...

2018-03-20 14:56:23 352

原创 循环链表的建立

#include<stdio.h>#include<stdlib.h>typedef struct student { int data; struct student *next;}STU;STU *creatnew(){ STU *p; p=(STU*)malloc(sizeof(STU)); p->next=p;} STU *cr...

2018-03-20 10:16:46 736

原创 双向链表建立、插入删除

#include<stdio.h>#include<stdlib.h>typedef struct Node{ struct Node* pre;//指向上一个 int data; struct Node *next;//指向下一个 }STU,*nodes; nodes creatnew()//建立头结点 { nodes head; head=(n...

2018-03-20 10:13:05 136

图书管理系统

图书管理系统

2018-12-25

空空如也

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

TA关注的人

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