摘要:
``` #include #include using namespace std; typedef struct BiTNode{ char data; struct BiTNode* lchild; struct BiTNode* rchild; }BiTNode,*BiTree; void C 阅读全文
posted @ 2023-07-03 10:44
ben犇
阅读(11)
评论(0)
推荐(0)
摘要:
``` #include #include using namespace std; class Mystack{ private: int top; vector data; public: Mystack(){ top=0; data.push_back(-1); } void push(int 阅读全文
posted @ 2023-07-03 10:43
ben犇
阅读(13)
评论(0)
推荐(0)
摘要:
``` #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=' 阅读全文
posted @ 2023-07-03 10:42
ben犇
阅读(11)
评论(0)
推荐(0)
摘要:
```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= 阅读全文
posted @ 2023-07-03 10:40
ben犇
阅读(21)
评论(0)
推荐(0)
浙公网安备 33010602011771号