C++字符串对分类实现

目的将一个字符串对数组进行两两拉通配对进行分类,例如:[(a,b),(c,d),(e,f),(g,h),(j,k),(a,j),(h,c),(k,e),(x,y)] 这么一个数组分类后为: a,b + a,j + j,k + k,e+ e,f --> (a,b,j,k,e,f) c,d
c++ 算法 2022年04月06日 1,299次浏览

ubuntu20.04编译IfcOpenShell

1.安装依赖sudo apt-get install git cmake gcc g++ libboost-all-dev libcgal-dev2.以下任选一种安装OCCT包(如果源码编译安装,编译时间很长,可能需要花几个小时机器配置差的话,耐心等待)a.使用系统源中自带的sudo apt-get
c++ shell linux 2022年01月25日 1,346次浏览

C++的一点资料整理

基础https://github.com/Blitzer207/C-Resource.gitC++那些事https://github.com/Light-City/CPlusPlusThings.gitgoogle编码规范https://zh-google-styleguide.readthedoc
c++ 2021年10月23日 1,194次浏览

c++开始篇

抄点代码,练习练习教程原址:c++练习#include "iostream"#include "string"#define MAX 1000using namespace std;struct Persion{ string m_Name; //姓名
c++ 2021年09月02日 1,012次浏览