题解列表
Python编写简单易懂 包含知识点 markdown编写
摘要:```
str1=input() # 字符串的输入
flag=len(str1) # 字符串的长度
for i in str1 :
a=str1.find(i)
……
数据结构-二叉链表存储的二叉树
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#include< bits/stdc++.h > #define MAX 101typedef struct BiTNod……