C++练习题
Tianzez
稳健
展开
-
C++——实现String类(写时拷贝)
< String.h> #ifndef __STRING_H__ #define __STRING_H__ #include <iostream> #include <assert.h> class String { public: String(const char* str = ""); //构造函数 String(cons...原创 2018-04-09 16:52:15 · 394 阅读 · 0 评论 -
C++——实现Vector&List
1. Vector < Vector.h > #ifndef __VECTOR_H__ #define __VECTOR_H__ #include <iostream> #include <stdlib.h> #include <string.h> typedef int DataType; class Vector { public: ...原创 2018-04-20 13:35:43 · 422 阅读 · 0 评论