2012年9月17日
摘要: 花了2天的时间阅读,但是感觉还是有点错误,在里面。个人感觉,里面的nil和NULL处理有点问题。特别是在要求父节点,祖父节点,叔叔节点,兄弟节点时出问题。#include<iostream>using namespace std;template<class T>struct Node{ T value; Node<T> *parent; Node<T> *left; Node<T> *right; int flag;//zero is black ,and one is red};template<class T>cla 阅读全文
posted @ 2012-09-17 15:02 不懂自然语言 阅读(216) 评论(0) 推荐(0)