- 博客(30)
- 收藏
- 关注
原创 学生信息管理系统
程序设计要求:1,功能要求:增加,删除,查找,修改,排序。2,要求有管理员和普通用户两个管理系统,且二者都要有登录界面。3,对于登录界面有要有用户名和密码,且用户名要为正常人名。4,要有后台能够记录登录信息(eg:什么时候、什么人登录)。5,要有新用户注册功能;对于新用户注册要有手机号(11位)、邮箱(注意有@)、用户名和密码同上述要求。6,CodeBlocks上实现(C语言)。#define _CRT_SECURE_NO_WARNINGS#include<stdio.
2022-01-25 19:46:38
1347
原创 第九次课程作业
二叉树遍历的递归实现#include <stdio.h>#include<stdlib.h>typedef struct BiTNode{ char data; struct BiTNode *lchild,*rchild;}BiNode,*BiTree;BiTree CreateBiTree(){ BiTree T; char c; scanf("%c",&c); if('#'==c){ T=NULL; }
2021-11-18 16:50:35
201
原创 第八次课程作业
蛇形填数1#include <iostream>#include <string.h>#include <cstdio>using namespace std;int a[100][100];int main(){ int x,y,n,p; cin>>n; memset(a,0,sizeof(a)); a[x=0][y=n-1]=1; p=1; while(p<n*n) { whil
2021-11-16 14:32:49
297
原创 第七次课程作业
经典KMP算法#include<bits/stdc++.h>using namespace std;int Next[100];void get_next(string s){ int i=1,j=0;Next[1]=0; while(i<=s.size()) { if(j==0||s[i-1]==s[j-1]){ ++i;++j;Next[i]=j; } else j=Next[j]; }}int Index(st
2021-11-15 22:31:56
208
原创 第六次课程
队列的链表实现#include "bits/stdc++.h"using namespace std;// 队列的节点struct Node{ int data;//数据域 struct Node* next;//指针域};// 队首队尾指针struct Queue{ struct Node* front;//队头指针 struct Node* rear;//队尾指针 int size;//队列长度};void QueueInit(stru
2021-11-15 22:25:45
734
原创 第四次作业
n的阶乘(递归)#include <stdio.h>#include <stdlib.h>int fun(int n){ int t; if(n==1||n==0){ t=1; } else{ t=fun(n-1)*n; } return t;}int main(){ int m,n; scanf("%d",&n); if(n<0){
2021-11-15 22:05:25
555
原创 第二次作业
/* Project: single linkeed list (数据结构 单链表) Date: 2021-10-7 09:26:57 Author: Frank Wang InitList(LinkList &L) 参数:单链表L 功能:初始化 时间复杂度 O(1) ListLength(LinkList L) 参数:单链表L 功能:获得单链表长度 时间复杂度O(n) ListInsert(L.
2021-11-15 21:58:15
76
原创 第一次作业
#include<stdio.h>#define MAX 100int insert(int a[],int n,int i,int x){ int j; if(n+1>MAX) printf("无插入空间\n"); //数组只能存MAX个数 else if(i<1||i>n+1) printf("插入位置非法\n"); //插入位置的范围为1..n+1 else { fo...
2021-11-15 21:53:42
168
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人