- 博客(2)
- 收藏
- 关注
原创 蓝桥杯 基础练习 高精度加法 C++
记录一下 #include <iostream> #include <string.h> #include <algorithm> using namespace std; int main() { int a[100], b[100], sum[100000]; memset(sum, 0, sizeof(sum)); memset(a, 0, sizeof(a)); memset(b, 0, sizeof(b)); string a1, b1; cin &
2022-03-26 16:04:04 1163
原创 数据结构《集合》篇
从现在的2021年3月14日开始,记录我在软件工程的学习进度。 前几天老师给出选做题,编写一个有关集合的线性表数据结构。 当时我还考虑着集合的三大特性,想得头皮发麻,几个小时的后,终于搞定了。以下为源码: //从头到尾,结构体内元素不含空格,cout额外输出 #include <iostream> #include <malloc.h> #define Max 200 typedef char ElemType; typedef struct { ElemType Chara
2021-03-14 20:41:37 127 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人