c++
文章平均质量分 78
moucle_man
在下对算法有阴影
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
windows下 VS2017-libcurl开发环境 简洁版
Windows下 vs2017 libcurl开发环境简洁版原创 2022-04-14 14:11:12 · 558 阅读 · 0 评论 -
字符串匹配
#include<iostream>#include<string>using namespace std;int IsIn(const string match,char ch){ int i=0,size=match.size(); for(;i<size;i++) if(ch == match[i]) return size - i ;//找到 return -1;//未找到 } int The(const string pattern,con原创 2020-10-02 13:08:35 · 170 阅读 · 0 评论 -
快排与二分(C++)
#include<iostream>using namespace std;#include<algorithm>#include<string>#include<Windows.h> template<typename ElemType>class Tool{ protected: ElemType* Data; int Data_count; int At_present_index; public: Too原创 2020-08-31 11:49:25 · 271 阅读 · 0 评论 -
c++
小白模拟实现一个班级 学生期末成绩系统数据: 姓名 学号 性别 5门成绩 (大物 大英 大数 大思 大C)#include<iostream>#include<string>#include<cstring>#include <pthread.h>#include<windows.h>#include<fstream> #include<iomanip>using namespace std;templ原创 2020-08-04 21:46:19 · 166 阅读 · 0 评论
分享