
课题实验
在这里我会分享学习计算机的同学在大学期间的一些课程设计和相关的实验代码,希望对大家有所帮助
梓青
一个爱写代码的程序员
展开
-
课程设计:编程实现学生信息管理系统
编程实现学生信息管理系统,学生信息包括姓名,学号,年龄,性别,分数,班级原创 2023-01-16 15:50:40 · 262 阅读 · 0 评论 -
利用sql建立教材数据库并定义以下基本表:学生(学号,年龄,性别,系名)教材(编号,书名,出版社编号,价格)订购(学号,书号,数量)出版社(编号,名称,地址)定义主码、外码、和价格、数数量的取值范围
利用sql建立教材数据库,并定义以下基本表:学生(学号,年龄,性别,系名) 教材(编号,书名,出版社编号,价格)订购(学号,书号,数量)出版社(编号,名称,地址)定义主码、外码、和价格、数量的取值范围。2 在三个表中输入若干记录,注意如果输入违反完整性约束条件的记录系统有何反应。...原创 2022-06-13 19:14:24 · 2537 阅读 · 0 评论 -
学生宿舍管理系统
#include<stdio.h>#include<stdlib.h>#include<string.h>#include<time.h>typedef struct sushe //宿舍 { char name[100]; //姓名 char sushehao[100]; //宿舍号 char banji[100]; //班级 char xueyuan[100]; //学院 int cnt; //费用 struct su原创 2021-08-12 09:07:01 · 465 阅读 · 0 评论 -
单链表的基本操作
//线性表的基本操作#include<iostream>using namespace std;typedef struct LNode{ int data; LNode *next;}LNode, *LinkList;//头插法建立单链表LinkList list_HeadInsert(LinkList &L){ LNode *s; int x; L=(LinkList)malloc(sizeof(LNode));//建立头结点 L->next=NULL;原创 2022-01-08 19:37:59 · 116 阅读 · 0 评论 -
电路布线问题
//电路布线问题#include <iostream>#include<iomanip>#define L 100using namespace std;void mnset(int n, int c[], int size[L][L]){ for (int j = 0; j <= c[1]; j++) size[1][j] = 0;//初始化 for (int j = c[1]; j <= n; j++) size[1][j] = 1;//siz原创 2022-05-31 17:32:05 · 266 阅读 · 0 评论 -
最长公共子序列
//求解最长公共子序列#include<iostream>#include<stdio.h>#include<iomanip>using namespace std;const int length = 100;void LCSLength(int m, int n, char* x, char* y, int** c, int** b){ int i, j; for (i = 0; i <= m; i++) { c[i][0] = 0;原创 2022-05-31 17:27:15 · 101 阅读 · 0 评论 -
矩阵连乘问题
#include <stdio.h>#include <iomanip>#include <iostream>using namespace std;const int L = 7;void MatrixChain(int n, int** m, int** s, int* p);void PrintAnswer(int** s, int i, int j);//构造最优解void outputArray(int** s);int main(){ i.原创 2022-05-31 17:22:05 · 113 阅读 · 0 评论 -
磁盘空间管理
import java.awt.BorderLayout;import java.awt.FlowLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JOptionPane;import java原创 2022-05-08 14:55:20 · 397 阅读 · 0 评论 -
服务器并行访问控制 * 内容要求:编写算法,模拟实现服务器并行访问控制。具体实现要求如下:1创建3个服务器线程;2创建1个服务器并行管理线程;3.创建10个客户线程,随机向服务管理线程提出请求
public class Java { static class Client { final int time; final int id; Client(int id) { this.time = (new Random().nextInt(10) + 1) * 1000 * 1; this.id = id; } } static class Request原创 2022-05-08 14:53:31 · 358 阅读 · 1 评论 -
md5加密
import java.math.BigInteger;import java.security.MessageDigest;import java.util.*;public class Java { /** * 对字符串md5加密(小写字母+数字) * * @param str 传入要加密的字符串 * @return MD5加密后的字符串 */ public static String getMD5(String str) {原创 2022-05-08 14:51:17 · 1094 阅读 · 0 评论 -
java实现选课系统和课程管理
//javafx用jdk8import javafx.application.*;import javafx.beans.value.ChangeListener;import javafx.beans.value.ObservableValue;import javafx.geometry.*;import java.sql.*;import javafx.scene.Scene;import javafx.stage.Stage;import javafx.util.StringConv原创 2022-05-08 14:48:48 · 1288 阅读 · 0 评论 -
实现一个小型的图形绘制画板,包括直线、矩形、椭圆、多边形等基本图形
//javafx用jdk8版本import javafx.application.Application;import javafx.collections.*;import javafx.scene.*;import javafx.scene.layout.*;import javafx.scene.paint.Color;import javafx.stage.*;import javafx.event.*;import javafx.geometry.Insets;import ja原创 2022-05-08 14:45:07 · 613 阅读 · 0 评论 -
实现数据库的连接,动态增、删、改、查功能 具体要求:1、实现一个小型通讯录 2、能够实现个人通讯录列表的显示,表格显示 3、能够实现通讯录信息的动态增加、修改和删除 4、多个账号登录后通讯录列表独立
//javafx选用jdk8import java.sql.*;import java.io.*;import java.security.acl.Group;import javafx.application.*;import javafx.beans.value.*;import javafx.collections.*;import javafx.geometry.*;import javafx.scene.Scene;import javafx.stage.FileChooser;原创 2022-05-08 14:38:28 · 1576 阅读 · 0 评论 -
使用前需先登录,登录成功后方可使用,登录用户名和密码保存在一个文本文件中,可添加好友,好友信息包括:姓名、性别。输入姓名,点击查询,将给好友信息进行显年龄、爱好、现居住城市,点击保存将信息保存到文件
//javafx用jdk8版本import javafx.application.Application;import javafx.application.Platform;import javafx.beans.value.ChangeListener;import javafx.beans.value.ObservableValue;import javafx.collections.FXCollections;import javafx.collections.ObservableLis原创 2022-05-08 14:32:21 · 1297 阅读 · 0 评论 -
java实现通讯录功能
import java.util.*;import java.text.*;import java.io.*;//联系人类class Linkman { Linkman(String n,String[] p,String w,String c,String e,String b,String r){ name=n; phone=p; work=w; call=c; email=e; birthday=b; remark=r; } Linkman原创 2022-05-08 14:25:06 · 141 阅读 · 0 评论 -
java实现日记本功能
/***javafx用jdk8版本*/import javafx.application.Application;import javafx.application.Platform;import javafx.event.EventHandler;import javafx.geometry.Pos;import javafx.stage.FileChooser;import javafx.stage.Stage;import javafx.stage.Window;import j原创 2022-05-08 14:22:18 · 1464 阅读 · 0 评论 -
实现记事本的新建,保存,打开,另存为等功能
/**java实现记事本功能*/import java.awt.*;import java.awt.event.*;import java.io.*;public class Java{ private Frame fr; private TextArea ta; private MenuBar bar; private Menu m; private MenuItem mi1,mi2,mi3,mi4,mi5; private Font font; private Dialog原创 2022-05-08 14:18:15 · 734 阅读 · 1 评论 -
0 - 1背包问题
#include<iostream>#include <algorithm>#include<iomanip>#define length 20using namespace std;int V[length][length] = { 0 };int KnapSack(int n, int C, int w[5], int v[5], int x[5]) { int i, j; for (i = 0; i <= n; i++) V+[0] = 0原创 2022-05-31 17:21:26 · 81 阅读 · 0 评论 -
多边形游戏问题
#include<iostream>#include<stdio.h>using namespace std;#define n 4int m[100][100][100];char op[100];int v[100];int minf, maxf;void minMax(int i, int s, int j){ int e[5]; int a = m+[s][0], b = m+[s][1], r = (i + s - 1) % n + 1; i原创 2022-05-07 15:05:01 · 734 阅读 · 0 评论 -
求最长公共子序列
#include<iostream>#include<stdio.h>#include<iomanip>using namespace std;const int length = 100;void LCSLength(int m, int n, char* x, char* y, int** c, int** b){ int i, j; for (i = 0; i <= m; i++) { c+[0] = 0; b+[0] = 0; }原创 2022-05-07 15:04:25 · 94 阅读 · 0 评论 -
棋盘覆盖算法
#include<iostream>#include<cmath>using namespace std;int tile = 1;void ChessBoard(int* (*Board), int tr, int tc, int dr, int dc, int size){ if (size == 1) { return; } int t = tile++; int s = size / 2; if (dr < tr + s &&原创 2022-05-07 15:02:59 · 129 阅读 · 0 评论 -
用单链表实现学生成绩的管理
#include<iostream>#include<string>#include<malloc.h>using namespace std;typedef struct NodeList{ string num; string name; int chinese; int math; int english; struct NodeList* next;}List;void create(List* &L){ int i; Li原创 2022-05-07 15:02:08 · 259 阅读 · 0 评论 -
二叉树的遍历
#include<iostream>#include<cstdio>#include<stdlib.h>using namespace std;typedef struct BiTnode{ int data; struct BiTnode* Lchild, * Rchild;}BiTnode, * BiTree;int create(BiTree* T){ int ch, temp; cin >> ch; temp = getcha原创 2022-05-07 15:00:48 · 285 阅读 · 0 评论 -
进程控制模拟算法
#include<stdio.h>#include<stdlib.h>#include<string>#include <windows.h>#include<tlhelp32.h>#define N 10struct pb{ int ko; int no; int cha;};typedef struct pb PCB;PCB a[N];int showallproc(){ PROCESSENTRY32 pe32;原创 2022-05-07 14:58:51 · 234 阅读 · 0 评论 -
课程设计:公交线路管理系统
#include <iostream>#include <string>#include<iomanip>#include <fstream>using namespace std;#define N 20class Bus{public: Bus(); Bus(int nu, string na, string ty, string st, string te); ~Bus() { } int number; //编号 st原创 2022-05-07 14:56:35 · 1657 阅读 · 2 评论 -
课程设计:高校工资管理系统
#include<iostream>#include<string>#include<iomanip>#include<fstream>using namespace std;class person{public: person(); person(int nu, int ty, string na, string se, int ag, string par, string st, double pa, person * next);原创 2022-05-07 14:55:04 · 753 阅读 · 0 评论 -
高等院校人事信息管理系统
#include<iostream>#include<string>#include<fstream> //包含文件流对象文件#include<iomanip>using namespace std;class person //员工类的定义{protected: int no; //编号 char name[20]; //姓名 char sex[10]; //性原创 2022-05-07 14:54:03 · 369 阅读 · 1 评论 -
有五个学生的数据。要求1.把他们存放在磁盘文件中。将磁盘文件中的第1,3,5个学生数据读入程序,并显示出来。将 第三个学生的数据修改后存放回磁盘文件中的原有位置。从磁盘文件读入修改后的数据
#include<iostream>#include<fstream>using namespace std;struct student{ int num; char name[30]; char score;};int main(){ student stud[5] = { 1001,"li",85,1002,"Fang",97.5,1004,"Wang",56,1006,"Tian",76.5,1010,"ling",96 }; fstream iofi原创 2022-05-02 19:57:19 · 285 阅读 · 0 评论 -
将一批数据以二进制形势存放在磁盘文件中
#include<fstream>#include<iostream>using namespace std;struct student{ char name[20]; int num; int age; char sex;};int main(){ student stud[3] = { "li",1001,18,'f',"fang",1002,19,'m',1004,17,'f' }; ofstream outfile("stud.dat", ios:原创 2022-05-02 19:53:56 · 302 阅读 · 0 评论 -
从键盘上读入一行字符,把其中的字母依旧存放在磁盘文件fa.dat中。再把它从磁盘文件读入程序,将其中的小写字 字母改为大写字母,再存放在磁盘文件f3.dat
#include<fstream>#include<iostream>using namespace std;void save_to_file(){ ofstream outfile("f2.dat"); if (!outfile) { cerr << "open fa.dat error!" << endl; exit(1); } char c[80]; cin.getline(c, 80); for(int i=0;c+!=原创 2022-05-02 19:51:53 · 196 阅读 · 0 评论 -
多重继承与虚基类的使用
#include<iostream>#include<string>using namespace std;class person{public: person(string = " ", char = ' ', int = 0); void setperson(); void displayperson();private: string name; char sex; int age;};person::person(string n, char s原创 2022-05-02 19:49:11 · 102 阅读 · 0 评论 -
编写程序在circle类中实现关系运算符(大于,小于,等于),实现按照半径circle对象排序。 自己定义类中所需的成品。实现上述功能
#include<iostream>#include<cmath>#include<iomanip>#define pi 3.1415926using namespace std;class circle{public: circle() { radius = 0; } circle(double); double area(); friend bool operator >(circle&, circle&); friend原创 2022-05-02 19:47:56 · 370 阅读 · 0 评论 -
有一篇文章,共3行文字,每行80个字符。要求分别统计其中英文大写字母,小写字母,数字,空格以及其他字符的个数
#include<iostream>#include<string>#define m 80using namespace std;int main(){ int i, j, upper, lower, num, space, other; char str[3][m]; upper = 0, lower = 0, num = 0, space = 0, other = 0; for (i = 0; i < 3; i++) { cout <<原创 2022-05-02 19:10:48 · 2369 阅读 · 1 评论 -
医院有A,B,C,D,E,F,G七个医生,每人在一周内要值一次夜班,编写程序,输出每位医生的值班日
#include<iostream>#include<iomanip>#define m 5using namespace std;int main(){ enum weekday{sunday,monday,tuesday,wednesday,thurday,friday,saturday}; int A, B, C, D, E, F, G, loop; weekday day; F = thurday; for(A = sunday;A<=saturda原创 2022-05-02 19:07:13 · 1646 阅读 · 0 评论 -
牛顿迭代法算法的实现
//实验七 牛顿迭代法#include<iostream>#include<cmath>#define Length 100using namespace std;class NewtonIterationMethod {public: void input(); double function(double x); double derivative(double x); double newtonmethod(double Xo); void analys.原创 2020-11-29 16:32:04 · 2306 阅读 · 0 评论 -
二分法和简单迭代法的算法的实现
//实验六 二分法和简单迭代法 #include<iostream>#include<cmath>#define Length 10using namespace std;class Extract {public: double fun1(double x); double fun2(double x); void input1(); void input2(); int methodofbisection(); int simpleiterationme.原创 2020-11-29 16:30:32 · 689 阅读 · 0 评论 -
梯形逐次分半算法的实现
//实验五 梯形逐次分半算法#include<iostream>#include<cmath>#include<iomanip>#include <chrono>#include <ratio>#define Length 10000using namespace std::chrono;using namespace std;class Trapezoid {public: void input(); double g.原创 2020-11-29 16:28:48 · 2466 阅读 · 1 评论 -
c++实现复合求积公式 和辛普森公式
//实验四 复合梯形和辛普森公式#include<iostream>#include<cmath>using namespace std;class formula{public: formula(double a,double b,int n); double function(double x); double Trapezoid(); double Simpson();private: double a; double b; int n;};fo.原创 2020-11-29 16:26:37 · 1899 阅读 · 0 评论 -
牛顿插值算法的实现
//计算机科学数值与方法实验二#include<iostream>#include<cmath>#include<iomanip>using namespace std;#define Length 10double NewtonInterpolation(int n, double* x, double* y, double xi,double newtontime) { double sinx = 0.0; double DifQTable[Leng.原创 2020-11-29 16:20:23 · 829 阅读 · 0 评论 -
拉格朗日插值多项式的算法实现
//计算机科学数值与方法实验一#include#include#define Length 100using namespace std;double Lagrange_Interpolation( int n , double * x ,double * y,double xi) {double fx=0.0;for (int i = 0; i <= n; i++) {double l = 1.0;for (int j = 0; j <= n; j++) {if (j !.原创 2020-11-29 16:13:47 · 989 阅读 · 0 评论