logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

算法与数据结构实验题6.4 order (二叉树)

1、题目:2、代码:#include<iostream>#include<algorithm>using namespace std;struct Node{int left;int right;int father;int ord;} node[100010];void preOrder(int m)...

#数据结构与算法
到底了