摘要:
程序设计与算法(三) 019 全面的MyString 学C++的过程中,每看到自己前一天写的代码,都会感觉这是什么gs玩意。。 // // Created by vv123 on 2022/3/22. // #include <cstdlib> #include <iostream> using n 阅读全文
摘要:
// // Created by vv123 on 2022/3/21. // #include <iostream> #include <cstring> using namespace std; class myVector { int capacity; int size; int *ptr; 阅读全文
摘要:
作为一个写了两年C with STL的小菜鸡,最近在学习程序设计与算法(三)C++面向对象程序设计这门MOOC。 以下是作业013的代码,本来想练习下各种面向对象的概念结果好像写成了超级四不像2333 // // Created by vv123 on 2022/3/20. // #include 阅读全文
摘要:
复习一下链表qaq // // Created by vv123 on 2022/3/3. // #include <bits/stdc++.h> #define io_optimization() ios_base::sync_with_stdio(0);cin.tie(0) using name 阅读全文