数据结构与算法实验题五道 A一元多项式的求导 B还原二叉树 C 六度空间 D 基于词频的文件相似度 E 模拟excel排序

A

(1) 输入格式说明:

以指数递降方式输入多项式非零项系数和指数(绝对值均为不超过1000的整数)。数字间以空格分隔。

(2) 输出格式说明:

以与输入相同的格式输出导数多项式非零项的系数和指数。数字间以空格分隔,但结尾不能有多余空格。

(3) 样例输入与输出:

输入1:

3 4 -5 2 6 1 -2 0

输出1:

12 3 -10 1 6 0

输入2:

-1000 1000 999 0

输出2:

-1000000 999

输入3:

1000 0

输出3:

0 0

 代码:

#include <iostream>
#include <chrono>
#include <math.h>
#include <ctime>
#include <stack>
#include <sstream>
#include <string>#define SIZE 1000
#define ADDSIZE 100
using namespace std;
typedef struct
{int* base;int* top;int stacksize;
}Stack;void initstack(Stack* S)
{S->base = (int*)malloc(SIZE * sizeof(int));if (!S->base)	exit(EOVERFLOW);S->top = S->base;S->stacksize = SIZE;
}int isEmpty(Stack* S)
{return S->base == S->top;
}int gettop(Stack* S)
{if (S->base == S->top)	exit(0);elsereturn	*(--S->top);
}void push(Stack* S, int e)
{if (S->top - S->base >= S->stacksize){exit(EOVERFLOW);}*S->top++ = e;
}void Num(string& input, Stack* numstack) {istringstream iss(input);int num;while (iss >> num) {push(numstack,num);iss.ignore();  }
}
int main()
{int count = 0;int coe, ind;string s;getline(cin, s);Stack T1;initstack(&T1);Stack T2;initstack(&T2);Num(s, &T1);while (!isEmpty(&T1)){push(&T2, gettop(&T1));++count;}while (!isEmpty(&T2)){coe = gettop(&T2);ind = gettop(&T2);if (coe != 0 && ind != 0){cout << coe * ind << " " << ind - 1 << " ";}else if (coe != 0 && count == 2){cout << 0 << " " << 0;}else {cout << "";}}return 0;
}

B

设二叉树的结点的数据域的类型为char,给定一棵二叉树的先序遍历序列和中序遍历序列,还原该二叉树,并输出二叉树的深度和叶子节点的数量。

用例1

-*+abc/de
a+b*c-d/e
4
5

用例2

ab
ba
2
1

用例3

*c-ab
c*a-b
3
3

用例4

A
A
1
1

说明:用例的前两行分别为输入的先序和中序序列,这两个序列中不能有重复的字符,后两行分别为计算得出的二叉树的深度和叶子数量。

#include <iostream>
#include <vector>
#include <string>
#include <stack>
#include <iomanip>
#include <unordered_map>
using namespace std;struct TreeNode {char data;TreeNode* left;TreeNode* right;
};TreeNode* buildTree(string preorder, string inorder, int start, int end, int& index) {if (start > end) {return nullptr;}TreeNode* root = new TreeNode;root->data = preorder[index++];root->left = root->right = nullptr;int i;for (i = start; i <= end; i++) {if (inorder[i] == root->data) {break;}}root->left = buildTree(preorder, inorder, start, i - 1, index);root->right = buildTree(preorder, inorder, i + 1, end, index);return root;
}int getDepth(TreeNode* root) {if (root == nullptr) {return 0;}int leftDepth = getDepth(root->left);int rightDepth = getDepth(root->right);return 1 + max(leftDepth, rightDepth);
}int getLeafCount(TreeNode* root) {if (root == nullptr) {return 0;}if (root->left == nullptr && root->right == nullptr) {return 1;}int leftCount = getLeafCount(root->left);int rightCount = getLeafCount(root->right);return leftCount + rightCount;
}int main() {string preorder, inorder;cin >> preorder;cin >> inorder;int index = 0;int n = inorder.size() - 1;TreeNode* root = buildTree(preorder, inorder, 0, n, index);int depth = getDepth(root);int leafCount = getLeafCount(root);cout << depth << endl;cout << leafCount << endl;return 0;
}

C

“六度空间”理论又称作“六度分隔(Six Degrees of Separation)”理论。这个理论可以通俗地阐述为:“你和任何一个陌生人之间所间隔的人不会超过六个,也就是说,最多通过五个人你就能够认识任何一个陌生人。”如下图所示。

“六度空间”理论虽然得到广泛的认同,并且正在得到越来越多的应用。但是数十年来,试图验证这个理论始终是许多社会学家努力追求的目标。然而由于历史的原因,这样的研究具有太大的局限性和困难。随着当代人的联络主要依赖于电话、短信、微信以及因特网上即时通信等工具,能够体现社交网络关系的一手数据已经逐渐使得“六度空间”理论的验证成为可能。 假如给你一个社交网络图,请你对每个节点计算符合“六度空间”理论的结点占结点总数的百分比。

(1) 输入格式说明:

输入第1行给出两个正整数,分别表示社交网络图的结点数N (1<N<=104,表示人数)、边数M(<=33*N,表示社交关系数)。随后的M行对应M条边,每行给出一对正整数,分别是该条边直接连通的两个结点的编号(节点从1到N编号),表示两个人互相认识。

(2) 输出格式说明:

对每个结点输出与该结点距离不超过6的结点数占结点总数的百分比,精确到小数点后2位。每个结节点输出一行,格式为“结点编号:(空格)百分比%”。自身到自身的距离为0,故计算的时候也把自身算入。

输入用例1

10 9
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10

输出用例1

1: 70.00%
2: 80.00%
3: 90.00%
4: 100.00%
5: 100.00%
6: 100.00%
7: 100.00%
8: 90.00%
9: 80.00%
10: 70.00%

输入用例2

10 8
1 2
2 3
3 4
4 5
5 6
6 7
7 8
9 10

输出用例2

1: 70.00%
2: 80.00%
3: 80.00%
4: 80.00%
5: 80.00%
6: 80.00%
7: 80.00%
8: 70.00%
9: 20.00%
10: 20.00%

输入用例3

11 10
1 2
1 3
1 4
4 5
6 5
6 7
6 8
8 9
8 10
10 11

输出用例3

1: 100.00%
2: 90.91%
3: 90.91%
4: 100.00%
5: 100.00%
6: 100.00%
7: 100.00%
8: 100.00%
9: 100.00%
10: 100.00%
11: 81.82%

代码:

#include <iostream>
#include <vector>
#include <string>
#include <stack>
#include <iomanip>
#include <queue>
using namespace std;
vector<vector<int>> graph;
int N, M;void calculateSixDegrees() {for (int node = 1; node <= N; node++) {vector<bool> visited(N + 1, false);queue<int> q;visited[node] = true;q.push(node);int level = 0;int total = 1; while (!q.empty() && level < 6) {int nodesAtCurrentLevel = q.size();for (int i = 0; i < nodesAtCurrentLevel; i++) {int currentNode = q.front();q.pop();for (int neighbor : graph[currentNode]) {if (!visited[neighbor]) {visited[neighbor] = true;q.push(neighbor);total++;}}}level++;}double percentage = (static_cast<double>(total) / N) * 100;cout << node << ": " << fixed << setprecision(2) << percentage << "%" << endl;}
}int main() {cin >> N >> M;graph.resize(N + 1);for (int i = 0; i < M; i++) {int u, v;cin >> u >> v;graph[u].push_back(v);graph[v].push_back(u);}calculateSixDegrees();return 0;
}

 D

实现一种简单原始的文件相似度计算,即以两文件的公共词汇占总词汇的比例来定义相似度。为简化问题,这里不考虑中文(因为分词太难了),只考虑长度不小于3、且不超过10的英文单词,长度超过10的只考虑前10个字母。

(1) 输入格式说明:

输入首先给出正整数N(<=100),为文件总数。随后按以下格式给出每个文件的内容:首先给出文件正文,最后在一行中只给出一个字符“#”,表示文件结束。在N个文件内容结束之后,给出查询总数M(<=10000),随后M行,每行给出一对文件编号,其间以空格分隔。这里假设文件按给出的顺序从1到N编号。

(2) 输出格式说明:

针对每一条查询,在一行中输出两文件的相似度,即两文件的公共词汇量占两文件总词汇量的百分比,精确到小数点后1位。注意这里的一个“单词”只包括仅由英文字母组成的、长度不小于3、且不超过10的英文单词,长度超过10的只考虑前10个字母。单词间以任何非英文字母隔开。另外,大小写不同的同一单词被认为是相同的单词,例如“You”和“you”是同一个单词。

输入用例1

3
Aaa Bbb Ccc
#
Bbb Ccc Ddd
#
Aaa2 ccc Eee
is at Ddd@Fff
#
2
1 2
1 3

输出用例1

50.0%
33.3%

输入用例2

2
This is a test for repeated repeated words.
#
All repeated words shall be counted only once.  A longlongword is the same as this longlongwo.
#
1
1 2

输出用例2

23.1%

输入用例3

2
This is a test to show ...
#
Not similar at all
#
1
1 2

输出用例3

0.0%

输入用例4

4	2
These two files are the same
#
these.two_files are the SAME
#
1
1 2

输出用例4

100.0%

代码:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>#define MAXS 10
#define MINS 3
#define MAXB 5
#define MAXTable 500009typedef char ElementType[MAXS + 1];typedef struct FileEntry {int words;struct FileEntry* Next;
}WList;typedef struct WordEntry {int FileNo;struct WordEntry* Next;
}FList;struct HashEntry {ElementType Element;int FileNo;FList* InvIndex;
};typedef struct HashTbl {int TableSize;struct HashEntry* TheCells;
}HashTable;HashTable* Table_Init(int TableSize) {HashTable* H = malloc(sizeof(HashTable));H->TableSize = TableSize;H->TheCells = malloc(sizeof(struct HashEntry) * H->TableSize);while (TableSize) {H->TheCells[--TableSize].FileNo = 0;H->TheCells[TableSize].InvIndex = NULL;}return H;
}WList* FileIndex_Init(int Size) {WList* F = malloc(sizeof(FList) * Size);while (Size) {F[--Size].words = 0;F[Size].Next = NULL;}return F;
}int GetWord(ElementType Word) {char c;int p = 0;scanf("%c", &c);while (!isalpha(c) && (c != '#'))scanf("%c", &c);if (c == '#')return 0;while (isalpha(c) && (p < MAXS)) {Word[p++] = tolower(c);scanf("%c", &c);}while (isalpha(c))scanf("%c", &c);if (p < MINS)return GetWord(Word);else {Word[p] = '\0';return 1;}
}int Hash(char* key, int p) {unsigned int h = 0;while (*key != '\0')h = (h << MAXB) + (*key++ - 'a');return h % p;
}int Find(ElementType key, HashTable* H) {int pos = Hash(key, H->TableSize);while (H->TheCells[pos].FileNo && strcmp(H->TheCells[pos].Element, key)) {pos++;if (pos == H->TableSize)pos -= H->TableSize;}return pos;
}int InsertAndIndex(int FileNo, ElementType key, HashTable* H) {FList* F;int pos = Find(key, H);if (H->TheCells[pos].FileNo != FileNo) {if (!H->TheCells[pos].FileNo)strcpy(H->TheCells[pos].Element, key);H->TheCells[pos].FileNo = FileNo;F = malloc(sizeof(FList));F->FileNo = FileNo;F->Next = H->TheCells[pos].InvIndex;H->TheCells[pos].InvIndex = F;return pos;}elsereturn -1;
}void FileIndex(WList* File, int FileNo, int pos) {WList* W;if (pos < 0)return;W = malloc(sizeof(WList));W->words = pos;W->Next = File[FileNo - 1].Next;File[FileNo - 1].Next = W;File[FileNo - 1].words++;
}double work(WList* File, int F1, int F2, HashTable* H) {int temp;WList* W;FList* F;if (File[F1 - 1].words > File[F2 - 1].words) {temp = F1;F1 = F2;F2 = temp;}temp = 0;W = File[F1 - 1].Next;while (W) {F = H->TheCells[W->words].InvIndex;while (F) {if (F->FileNo == F2)break;F = F->Next;}if (F)temp++;W = W->Next;}return ((double)(temp * 100) / (double)(File[F1 - 1].words + File[F2 - 1].words - temp));
}
struct Find {int x, y;
};
int main() {int n, m, x = 0;ElementType word;HashTable* H;WList* File;struct Find FIND[100];scanf("%d", &n);if (getchar() != '\n'){scanf("%d", &n);}File = FileIndex_Init(n);H = Table_Init(MAXTable);for (int i = 0; i < n; i++)while (GetWord(word))FileIndex(File, i + 1, InsertAndIndex(i + 1, word, H));scanf("%d", &m);for (int i = 0; i < m; i++) {scanf("%d %d", &FIND[i].x, &FIND[i].y);}for (int i = 0; i < m - 1; i++){printf("%.1f%c\n", work(File, FIND[i].x, FIND[i].y, H), '%');}printf("%.1f%c", work(File, FIND[m - 1].x, FIND[m - 1].y, H), '%');return 0;
}

 E

Excel可以对一组纪录按任意指定列排序。现请编写程序实现类似功能。

(1) 输入格式说明:

输入的第1行包含两个正整数 N (<=100000) 和 C,其中 N 是纪录的条数,C 是指定排序的列号。之后有 N 行,每行包含一条学生纪录。每条学生纪录由学号(6位数字,保证没有重复的学号)、姓名(不超过8位且不包含空格的字符串)、成绩([0, 100]内的整数)组成,相邻属性用1个空格隔开。

(2) 输出格式说明:

在 N 行中输出按要求排序后的结果,即:当 C=1 时,按学号递增排序;当 C=2时,按姓名的非递减字典序排序;当 C=3 时,按成绩的非递减排序。当若干学生具有相同姓名或者相同成绩时,则按他们的学号递增排序。

输入用例1

3 1
000007  James  85
000010  Amy  90
000001  Zoe  60

输出用例1

000001 Zoe 60
000007 James 85
000010 Amy 90

输入用例2

4 2
000007 James 85
000010 Amy 90
000001 Zoe 60
000002 James 98

输出用例2

000010 Amy 90
000002 James 98
000007 James 85
000001 Zoe 60

输入用例3

4 3
000007 James 85
000010 Amy 90
000001 Zoe 60
000002 James 90

输出用例3

000001 Zoe 60
000007 James 85
000002 James 90
000010 Amy 90

输入用例4

1 2
999999 Williams 100

输出用例4

999999 Williams 100

代码:

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;struct Student {string id;string name;int score;
};bool compare(const Student& s1, const Student& s2) {return s1.id < s2.id;
}bool compareName(const Student& s1, const Student& s2) {if (s1.name != s2.name)return s1.name < s2.name;return s1.id < s2.id;
}bool compareScore(const Student& s1, const Student& s2) {if (s1.score != s2.score)return s1.score < s2.score;return s1.id < s2.id;
}int main() {int N, C;cin >> N >> C;vector<Student> records(N);for (int i = 0; i < N; i++) {cin >> records[i].id >> records[i].name >> records[i].score;}if (C == 1)sort(records.begin(), records.end(), compare);else if (C == 2)sort(records.begin(), records.end(), compareName);else if (C == 3)sort(records.begin(), records.end(), compareScore);for (int i = 0; i < N; i++) {cout << records[i].id << " " << records[i].name << " " << records[i].score << endl;}return 0;
}

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/831037.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

第八篇:隔离即力量:Python虚拟环境的终极指南

隔离即力量&#xff1a;Python虚拟环境的终极指南 1 引言 在编程的多元宇宙中&#xff0c;Python语言犹如一颗闪耀的星辰&#xff0c;其魅力不仅仅在于简洁的语法&#xff0c;更在于其庞大而繁荣的生态系统。然而&#xff0c;随着应用的增长和复杂性的提升&#xff0c;开发者们…

ChatGPT 记忆功能上线 能记住你和GPT互动的所有内容

你和ChatGPT的互动从今天开始变得更加智能&#xff01;ChatGPT现在可以记住你的偏好和对话细节&#xff0c;为你提供更加相关的回应。和它聊天&#xff0c;你可以教它记住新的东西&#xff0c;例如&#xff1a;“记住我是素食主义者&#xff0c;当你推荐食谱时。”想了解ChatGP…

【15】Head First Java 学习笔记

HeadFirst Java 本人有C语言基础&#xff0c;通过阅读Java廖雪峰网站&#xff0c;简单速成了java&#xff0c;但对其中一些入门概念有所疏漏&#xff0c;阅读本书以弥补。 第一章 Java入门 第二章 面向对象 第三章 变量 第四章 方法操作实例变量 第五章 程序实战 第六章 Java…

Java基于微信小程序+uniapp的校园失物招领小程序(V3.0)

博主介绍&#xff1a;✌程序员徐师兄、7年大厂程序员经历。全网粉丝12w、csdn博客专家、掘金/华为云/阿里云/InfoQ等平台优质作者、专注于Java技术领域和毕业项目实战✌ &#x1f345;文末获取源码联系&#x1f345; &#x1f447;&#x1f3fb; 精彩专栏推荐订阅&#x1f447;…

微软如何打造数字零售力航母系列科普06 - 如何使用微软的Copilot人工智能

如何使用微软的Copilot人工智能&#xff1f; Copilot和ChatGPT有很多相似之处&#xff0c;但微软的聊天机器人本身就有一定的优势。以下是如何对其进行旋转&#xff0c;并查看其最引人注目的功能。 ​​​​​​​ &#xff08;资料来源&#xff1a;Lance Whitney/微软&…

NLP 笔记:TF-IDF

TF-IDF&#xff08;Term Frequency-Inverse Document Frequency&#xff0c;词频-逆文档频率&#xff09;是一种用于信息检索和文本挖掘的统计方法&#xff0c;用来评估一个词在一组文档中的重要性。TF-IDF的基本思想是&#xff0c;如果某个词在一篇文档中出现频率高&#xff0…

使用c++类模板和迭代器进行List模拟实现

List 一、创建节点结构二、创建迭代器类1、类的结构2、一系列的运算符重载 三、创建list1、细节把握2、迭代器函数3、构造函数和析构函数4、增删查改的成员函数 一、创建节点结构 template <class T>//节点结构 struct ListNode {ListNode<T>* _next;ListNode<…

Springboot+vue+小程序+基于微信小程序的在线学习平台

一、项目介绍    基于Spring BootVue小程序的在线学习平台从实际情况出发&#xff0c;结合当前年轻人的学习环境喜好来开发。基于Spring BootVue小程序的在线学习平台在语言上使用Java语言进行开发&#xff0c;在数据库存储方面使用的MySQL数据库&#xff0c;开发工具是IDEA。…

APScheduler定时器使用:django中使用apscheduler,使用mysql做存储后端

一、基本环境 python版本&#xff1a;3.8.5 APScheduler3.10.4 Django3.2.7 djangorestframework3.15.1 SQLAlchemy2.0.29 PyMySQL1.1.0二、django基本设置 2.1、新增一个app 该app用来写apscheduler相关的代码 python manage.py startapp gs_scheduler 2.2、修改配置文件s…

Ollamallama

Olllama 直接下载ollama程序&#xff0c;安装后可在cmd里直接运行大模型&#xff1b; llama 3 meta 开源的最新llama大模型&#xff1b; 下载运行 1 ollama ollama run llama3 2 github 下载仓库&#xff0c;需要linux环境&#xff0c;windows可使用wsl&#xff1b; 接…

C++浮点数format时的舍入问题

C浮点数format时的舍入问题 首先有这样一段代码&#xff1a; #include <iostream> #include <stdio.h> using namespace std;int main() {cout << " main begin : " << endl;printf("%.0f \r\n", 1.5);printf("%.0f \r\n&…

吴恩达2022机器学习专项课程(一)8.2 解决过拟合

目录 解决过拟合&#xff08;一&#xff09;&#xff1a;增加数据解决过拟合&#xff08;二&#xff09;&#xff1a;减少特征特征选择缺点 解决过拟合&#xff08;三&#xff09;&#xff1a;正则化总结 解决过拟合&#xff08;一&#xff09;&#xff1a;增加数据 收集更多训…

【c++】模板编程解密:C++中的特化、实例化和分离编译

&#x1f525;个人主页&#xff1a;Quitecoder &#x1f525;专栏&#xff1a;c笔记仓 朋友们大家好&#xff0c;本篇文章我们来学习模版的进阶部分 目录 1.非类型模版参数按需实例化 2.模版的特化函数模版特化函数模版的特化类模版全特化偏特化 3.分离编译模版分离编译 1.非类…

综合性练习(后端代码练习4)——图书管理系统

目录 一、准备工作 二、约定前后端交互接口 1、需求分析 2、接口定义 &#xff08;1&#xff09;登录接口 &#xff08;2&#xff09;图书列表接口 三、服务器代码 &#xff08;1&#xff09;创建一个UserController类&#xff0c;实现登录验证接口 &#xff…

网络应用层之(6)L2TP协议详解

网络应用层之(6)L2TP协议 Author: Once Day Date: 2024年5月1日 一位热衷于Linux学习和开发的菜鸟&#xff0c;试图谱写一场冒险之旅&#xff0c;也许终点只是一场白日梦… 漫漫长路&#xff0c;有人对你微笑过嘛… 全系列文档可参考专栏&#xff1a;通信网络技术_Once-Day的…

Apollo Dreamview+之播放离线数据包

前提条件 完成 Dreamview 插件安装&#xff0c;参见 Studio 插件安装 。 操作步骤 您可以通过包管理和源码两种方式快速体验离线数据包播放操作。其中进入 docker 环境和启动 dreamview 的命令有所区别&#xff0c;请您按照命令进行操作。 步骤一&#xff1a;启动并打开 Dr…

C++学习第十四课:运算符类型与运算符重载

C学习第十四课&#xff1a;运算符类型与运算符重载 在C中&#xff0c;运算符重载是一种使得自定义类型&#xff08;如类对象&#xff09;能够使用C内建运算符的能力。运算符重载允许程序员定义运算符对用户定义类型的特殊行为&#xff0c;这增加了程序的可读性和自然表达能力。…

PaLmTac嵌入软体手手掌的视触觉传感器

触觉是感知和操作之间的桥梁。触觉信息对于手部行为反馈和规划具有重要意义。软体手的柔性特性在人机交互、生物医学设备和假肢等方面具有潜在应用的优势。本文提出了一种名为 PaLmTac的嵌入软体手手掌的视触觉传感器&#xff08;vision-based tactile sensor, VBTS&#xff09…

LeetCode 198—— 打家劫舍

阅读目录 1. 题目2. 解题思路3. 代码实现 1. 题目 2. 解题思路 此题使用动态规划求解&#xff0c;假设 d p [ i ] [ 0 ] dp[i][0] dp[i][0] 代表不偷窃第 i i i 个房屋可以获得的最高金额&#xff0c;而 d p [ i ] [ 1 ] dp[i][1] dp[i][1] 代表偷窃第 i i i 个房屋可以获…

Bluetooth Profile 蓝牙协议栈总结

GAP-Generic Access Profile 控制设备广播和连接 GAP profile 的目的是描述&#xff1a; Profile rolesDiscoverability modes and proceduresConnection modes and proceduresSecurity modes and procedures 设备连接过程 LE中GAP有4种角色&#xff1a;BroadcasterObserv…