题解列表

筛选

23.树的中序遍历 (C++代码)

摘要:解题思路: 1.创建树 2.中序遍历 注意事项: 一定要读懂题,看清楚 i 表示什么!!! 参考代码: ```cpp #include #include using namespac……

Hello, world! (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int arr[100];    int n=0;    while(scanf("%d",&arr[n]……