2 Star 1 Fork 0

iwaxi/TJU-DataStructure-24fa

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
string_array.h 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
iwaxi 提交于 2024-11-05 21:27 . moved src code to root dir.
#include <iostream>
using namespace std;
class myStr
{
private:
char* data;
int length;
int* next;
int* nextVal;
public:
myStr(const char*);
~myStr();
//其他可以考虑的构造函数
myStr(const int&);
myStr(const myStr&);
void print();
void kmp_next();
void kmp_nextVal();
void printNext();
void printNextVal();
friend bool replaceStr(myStr&, const int&, const myStr&, const myStr&);
friend int kmpMatch(const myStr&, const myStr&);
friend int simpleMatch(const myStr&, const myStr&);
const char& operator[](size_t) const;
char& operator[](size_t);
void reAllocate(int);
};
struct matrixNode
{
int row;
int col;
int value;
};
class myMatrix
{
private:
matrixNode* nodeList;
int rowNum;
int colNum;
int nodeNum;
public:
myMatrix(const int&, const int&, const int&, const int*);
~myMatrix();
//建议加入的构造函数
myMatrix();
myMatrix(const myMatrix&);
void printMatrix();
void FastTransposeSMatrix(myMatrix&);
void reAllocate(const int&, const int&, const int&);
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/iwaxi/tju-data-structure-24fa.git
[email protected]:iwaxi/tju-data-structure-24fa.git
iwaxi
tju-data-structure-24fa
TJU-DataStructure-24fa
master

搜索帮助