?? set.h
字號:
#pragma once
#include <vector>
using namespace std;
class Set
{
public:
Set(void);
~Set(void);
Set(const Set & set);
Set(char cChar);
bool Insert(char cInsert);
bool Delete(char cDelete);
bool Find(char cFind);
int FindPos(char cFind);
int Add(const Set & set);
int Sub(const Set & set);
int Size() const;
Set operator + (const Set & set);
Set operator - (const Set & set);
const Set operator = (const Set & set);
char GetAt(int iPos);
bool IsEmpty();
private:
vector <char> SetContent;
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -