C语言
C语言学习关键点
已忘了
这个作者很懒,什么都没留下…
展开
-
函数指针与指针函数
#include<stdio.h>char *Answer(char);int add(int,int);int sub(int,int);int main(){ int (*fp)(int,int);//定义函数指针-》指向函数的指针 返回值类型与形参类型相同的函数 int (*fq)(int,int); int num1,num2; char op; scanf("%d,%d",&num1,&num2); fp=a.原创 2022-03-01 11:40:12 · 219 阅读 · 0 评论 -
二叉树(创建与遍历)
#include<stdio.h>#include<stdlib.h>int count;struct Node{ int data; struct Node *left; struct Node *right;};/*void createTree(struct Node **root)//如何理解 二级指针存放的是地址的地址 因为创建树是要实现的 root->left root->right的改变{ int da.原创 2022-03-07 11:11:55 · 457 阅读 · 0 评论 -
指针数组与数组指针
#include<stdio.h>#include<stdlib.h>int main(){ //指针数组:存放的是指针数据===地址 用于存放字符串比较方便 :因为字符指针的定义:char *str="string"; char *pa[5]= {"I love you 3000 times!","Just do it!","Everything is possible!","Do it!","Nice!"}; //char *str="string.原创 2022-02-28 17:41:40 · 560 阅读 · 0 评论 -
学生健康登记系统
#include<stdio.h>#include<stdlib.h>#include<string.h>struct Node *list=NULL;struct Student{ char num[10]; char name[20]; char academy[30]; float temperature; int cough; int health; char time[10]; char.原创 2022-03-08 18:14:49 · 699 阅读 · 1 评论 -
KMP算法
kmp算法是一种解决字符串匹配的算法。具体思想:匹配模板:aabaaf字符串:aabaabaaf进行匹配a a b a a b a a f a a b a a f 字母f 与字母 b 发生冲突原创 2022-03-06 13:50:21 · 187 阅读 · 0 评论 -
(C语言实现)返校信息登记系统
#include<stdio.h>#include<stdlib.h>#include<string.h>//定义全局变量 单链表struct Node *list=NULL;struct Student{ char num[20];//学号 char name[20];//姓名 char id[20];//身份证号 char academy[20];//学院 char major[40];//专业 char .原创 2022-03-04 16:47:44 · 486 阅读 · 0 评论