摘要: #include "stdafx.h"#include <iostream>#include <stack>#include <queue>#include <Windows.h>using namespace std;typedef struct _Node{ int data; struct _Node *left; struct _Node *right; bool isVisit; //用于后序非递归遍历,表示节点是否可以访问 _Node() { data = 0; left = NULL; r... 阅读全文
posted @ 2012-08-04 22:14 venow 阅读(905) 评论(0) 推荐(1)