⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dot.h

📁 我的红黑树的c++实现。主要特点是可以用dot工具把红黑树画出来
💻 H
字号:
// file dot.h
//created by alpha 2008.11.3

#ifndef DOT_H
#define DOT_H
#include <list>
#include <string>
#include "triple.h"

using namespace std;

class dot
{
	public:
		dot();
		void dotInsert(string *from, string *to, string info);
		void dotInsert(string *from, string *to, string *info);
		void dotInsert(string *s, string color);
		string *dotToString();
		void dotToJpg(string fname);
	private:
		list<triple *> *lt;
};
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -