先序、中序、后续遍历概述
三种遍历的代码
// demo树的遍历.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include "pch.h"
#include <iostream>
#include <stdlib.h>
#include <string.h>
using namespace std;
struct tNode
{
int data;
// demo树的遍历.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include "pch.h"
#include <iostream>
#include <stdlib.h>
#include <string.h>
using namespace std;
struct tNode
{
int data;