07 2023 档案
摘要:``` #include #include using namespace std; typedef struct BiTNode{ char data; struct BiTNode* lchild; struct BiTNode* rchild; }BiTNode,*BiTree; void C
阅读全文
摘要:``` #include #include using namespace std; class Mystack{ private: int top; vector data; public: Mystack(){ top=0; data.push_back(-1); } void push(int
阅读全文
摘要:``` #include #include using namespace std; int main(){ string s; cin>>s; char c1[100]; char c2[100]; char c3[100]; int f1=0,f2=0,f3=0; for(int i=0;i='
阅读全文
摘要:```c++ #include #include #include #include #define INTSIZE 100 #define INCREMENT 5 using namespace std; int my_atoi(char* s){ int num,i; char ch; num=
阅读全文