
程序算法
在这里我会分享各类问题相关的程序算法,希望对学习计算机的同学有所帮助
梓青
一个爱写代码的程序员
展开
-
c++实现北京地铁线路查询系统
北京地铁线路查询系统原创 2023-02-17 19:28:05 · 1895 阅读 · 1 评论 -
课程设计:编程实现学生信息管理系统
编程实现学生信息管理系统,学生信息包括姓名,学号,年龄,性别,分数,班级原创 2023-01-16 15:50:40 · 262 阅读 · 0 评论 -
编写程序求出ax^2+bx+c的解并指出方程的实根
3个系数、b、用输,并根据的大小判断是否有实数根 有两实数,输出“方程有两个实数根分别为:1 2”有一个实数根,输出“程有一个实数根为:1”(保留3位小数,并进行四舍五入),否则输出“方程没有实数根”样例1:输入:152输出:方程有两个实数根分别为:-0.438 -4.562样例2:输入:2-42输出:方程有一个实数根为: 1.000样例3:输入:123输出:方程没有实数根原创 2023-01-08 15:45:23 · 702 阅读 · 0 评论 -
乔普发现了藏宝图的和密,他打算去挖宝藏。可他来到宝藏入口处,要知道密码才能进入宝藏。经过观察,发现逵个密码的规律并不难,根据入口处石门上的字符串,将字符串里的所有数字加起就是这个密码。
乔普发现了藏宝图的和密,他打算去挖宝藏。可他来到宝藏入口处,要知道密码才能进入宝藏。经过观察,发现逵个密码的规律并不难,根据入口处石门上的字符串,将字符串里的所有数字(连续在一起的数字算一个数字)加起来,就是这个密码。例如,字符串asd123asd4b,对应的密码应该为:123+4=127.输入格式:第一行一个字符串。(不包含空格)输出格式:一个整数表示密码。输入样例1: asd123asd4b输入样例1: 127原创 2023-01-08 15:16:23 · 195 阅读 · 0 评论 -
编写程序显示4号影厅的座位图。影厅是9排座位,每排有9个座位。要求: 以方阵的形式显示座位图 没有订票的座位显示0,订票的座位显示1 每排座位左侧显示排号1-9
编写程序显示4号影厅的座位图。影厅是9排座位,每排有9个座位。要求:以方阵的形式显示座位图没有订票的座位显示0,订票的座位显示1每排座位左侧显示排号1-9原创 2022-07-14 07:46:17 · 235 阅读 · 0 评论 -
高斯消去法和LU三角分解法求解线性方程组算法的实现
//实验八 高斯消去法和LU三角分解法#include<iostream>#include<cmath>#define Length 10using namespace std;class DirectMethod {public: void gaussinput(); void luinput(); void gausselimination(); void lutriangulationmethod(); void gaussdisplay(); voi.原创 2020-11-29 16:34:17 · 1053 阅读 · 0 评论 -
闰年与非闰年的判定算法
//闰年与非闰年的判定#include<iostream>using namespace std;int main(){ int year; cout << "please enter a year :"; cin >> year; if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)//判断是否为闰年 cout << year << " is ";原创 2022-01-08 19:22:17 · 532 阅读 · 0 评论 -
求100-200之间的所有素数
//求100-200之间的所有素数#include<iostream>#include<cmath>#include<iomanip>using namespace std;int main(){ int i, k, m, n = 0; bool prime; for (m = 101; m<= 200;m=m+1)//选取100-200之间的素数 { prime = true; k = int(sqrt(m)); for (i =原创 2022-01-08 19:26:17 · 575 阅读 · 0 评论 -
有五种颜色的球若干,分别取出三种球,要求颜色各不相同,并输出每一个情况
//有五种颜色的球若干,分别取出三种球,要求颜色各不相同,并输出每一个情况#include<iostream>#include<iomanip>using namespace std;int main(){ enum color{red,yellow,blue,white,black}; color pri; int i, j, k, n, loop; n = 0; cout << "the result for:" << endl; f原创 2022-01-08 19:32:46 · 748 阅读 · 0 评论 -
快速排序算法
//快速排序算法#include<iostream>using namespace std;void quickSort(int array[],int low,int high){ int pivot,p_pos,i,t; if(low<high){ p_pos=low; pivot=array[p_pos];//将第1个设置为枢纽 for(i=low+1;i<=high;i++){ if(array[i]<pivot){//判断排序顺序,该顺序为原创 2022-01-08 19:36:19 · 90 阅读 · 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 length 100using namespace std;//以重量为贪心准则void WeightCriterion(int n, int c, int* wc, double* vc){ int i, j, weight; double w[length], v[length], value; for (i = 1; i <= n; i++)原创 2022-05-31 17:34:05 · 125 阅读 · 0 评论 -
活动安排问题
//活动安排问题#include<iostream>#include<iomanip>#define Length 24using namespace std;//使用“将结束时间早的活动尽量先排"作为贪心准则。void GreedySelectorEndTime(int n, int s[],int f[]){ int i, j, t, temp, end[Length], a[Length], num = 1; for (j = 1; j <= n - 1原创 2022-05-31 17:33:03 · 134 阅读 · 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 评论 -
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<iomanip>using namespace std;int main(){ double T[5], f[5], f0, m; cout << "请输入个质量对应的频率" << endl; for (int i = 0; i < 5; i++) { cin >> f+; T+ = 1.0 / pow(f+, 2); } for (int i = 0; i &原创 2022-05-07 14:52:41 · 514 阅读 · 0 评论 -
面向对象透镜不确定度的计算
#include<iostream>#include<cmath>using namespace std;class scale{public: scale(double=0.0, double=0.0, double=0.0, double=0.0, int=0, int=0); void get_value(); void function(); void display();private: double A, B, C, m; int i, n;};原创 2022-06-13 18:53:01 · 194 阅读 · 0 评论 -
分光计的不确定度的程序
#include<iostream>#include<cmath>#define pi 3.1415926using namespace std;int main(){ double sum1 = 0, sum2 = 0, asum1 = 0.0,asum2=0; double s[5], average1, average2, u1, u2; double U1, U2, U, B, d[5]; int i; cout << "please inpu原创 2022-05-02 20:00:17 · 1425 阅读 · 0 评论 -
有五个学生的数据。要求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<string>#include<iomanip>using namespace std;bool flag = false;int main(){ string name[50], find_name; string exchange_name; int n, i, j, num[50]; float score[50], temp; int k; cout << "please i原创 2022-05-02 19:04:39 · 787 阅读 · 0 评论 -
用三个函数求方程的根的算法实现
#include<iostream>#include<cmath>using namespace std;int main(){ double m(int a, int b, int c); double n(int a, int b, int c); double p(int a, int b, int c); double a, b, c, x, x1, x2, d; cout << "please enter the a,b,c:"; cin .原创 2022-05-02 19:01:50 · 250 阅读 · 0 评论 -
基于c++实现磁盘调度的模拟算法
#include<iostream>#include<stdio.h>#include<math.h>#define N 11using namespace std;//初始化void init(int track[],int track2[]){ int i ; cout<<"请输入访问磁道序列:\n"; for (i=0;i<N;i++){ cin>>track[i]; track2[i] = track[i]原创 2021-08-12 09:09:18 · 331 阅读 · 0 评论 -
快速排序算法的设计与实现
#include<iostream>using namespace std;void quickSort(int array[],int low,int high){ int pivot,p_pos,i,t; if(low<high){ p_pos=low; pivot=array[p_pos];//将第1个设置为枢纽 for(i=low+1;i<=high;i++){ if(array[i]<pivot){//判断排序顺序,该顺序为由小到大原创 2021-08-12 08:54:05 · 309 阅读 · 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;原创 2021-08-12 08:48:10 · 439 阅读 · 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 评论