c/c++调用graphviz绘图

一、graphviz库配置

Graphviz是一个开源的绘图工具库,可以用来画流程图,网络结构图等,文档见参考链接1。

从官网Download | Graphviz下载安装包,在windows上安装完后

dll文件在 “C:\Program Files\Graphviz\bin”
头文件在 “C:\Program Files\Graphviz\include”
lib在 “C:\Program Files\Graphviz\lib”

在vs项目中配置路径,然后在代码中引用 #include<graphviz/gvc.h> 即可。

 二、graphviz可视化rbtree

以红黑树可视化为例,下面是绘图的主方法,大致可以分为7个步骤。

void draw_rb(Node * root)
{
	// 1 创建上下文,存储graph和渲染方法等
	GVC_t * gvc = gvContext();  
	// 2 创建一个 graph
	Agraph_t * g = agopen("g", Agdirected, 0);
	// 3 开始绘图
	__draw_rb(g, NULL, NULL, root);  // rbtree绘图方法
	// 4 指定输出的图像质量
	agsafeset(g, "dpi", "600", "");
	// 5 指定布局方式,文档中有8种布局方式可选,这里选择"dot"生成红黑树
	gvLayout(gvc, g, "dot");
	// 6 输出图片
	gvRenderFilename(gvc, g, "png", "D:\\test.png");
	// 7 释放内存
	gvFreeLayout(gvc, g);
	agclose(g);
	gvFreeContext(gvc);
}

调用agopen的时候,可以通过第二个参数来控制线条的冗余显示,即在两个结点之间显示多条连接线,或者只显示唯一的一条。

通过gvLayout(gvc, g, "dot"); 指定布局,支持8种不同的Layout,详细可以看这里https://graphviz.org/docs/layouts/

__draw_rb 的实现如下,通过递归的方式遍历整个树,然后调用 __draw_rb_node 绘制结点。

void __draw_rb(Agraph_t * g, Agnode_t * _parent, Node * parent_node, Node * _node)
{
	if (_node != NULL)
	{
		// 当前结点不是叶结点
		_parent = __draw_rb_node(g, _parent, get_node_name(_node->val, NULL), 
                                 NULL, _node->color);
	}

	if (_node->left != NULL)
	{
		// 左孩子不是叶结点
		__draw_rb(g, _parent, _node, _node->left);
	}
	else {
		// 左孩子是叶结点 NIL
		__draw_rb_node(g, _parent, get_node_name(_node->val, "lnil"), "NIL", 1);
	}

	if (_node->right != NULL)
	{
		// 右孩子不是叶结点
		__draw_rb(g, _parent, _node, _node->right);
	}
	else {
		// 右孩子是叶结点 NIL
		__draw_rb_node(g, _parent, get_node_name(_node->val, "rnil"), "NIL", 1);
	}
	return;
}

__draw_rb_node 实现如下,绘制结点包括两个步骤,第一步使用agnode创建结点对象,然后使用agsafeset设置结点属性,参考链接1 中的表4和表8列出来了支持设置的属性,另外结点之间的连接线和几何形状也是可以设置的。

需要注意的是,agnode的第二个参数name如果和已经存在的某个结点一样,那么agnode直接返回已存在的结点,如果不想返回相同的结点,可以通过将name设置为不同的字符串。

但是要是多个结点显示内容一样,但是不想作为同一个结点,那么可以通过设置“label”属性为需要显示的字符串,最终输出的图上就会显示设置的“label”属性的字符串,但是只要name设置为不同,那么实际上都是不同的结点。

#include<graphviz/gvc.h>

//#define SINGLE_NIL   // 将所有的NIL当作一个结点

char __node_name[20];

char * get_node_name(int val, char * leaf_str)
{
	if (leaf_str == NULL)
	{
		itoa(val, __node_name, 10);
		return __node_name;
	}
	else {
#ifdef SINGLE_NIL
		// 如果结点的name全部都为空字符串
        // 那么实际上agnode获取到的都是同一个结点
		// 从而实现了将所有的叶结点当作同一个结点的需求
		return "";
	}
#else
		// 从这里返回的每个叶结点的name都不相同
        // 因此agnode获取到的都是不同的叶结点
		// 从而实现了每个叶结点单独显示的需求
		sprintf(__node_name, "%s/%d", leaf_str, val);
		return __node_name;
	}
#endif
}

Agnode_t * __draw_rb_node(Agraph_t * g, Agnode_t * _parent, char * name, char * label, int color)
{
	Agnode_t * _node = agnode(g, name, 1);
	if (label != NULL)
	{
		// 如果注释下面这一句, 不设置label, 输出的图上结点显示name属性
		// 设置了label之后则会显示label
		agsafeset(_node, "label", label, "");
	}
	// 必须加这一句,否则下面的fillcolor属性设置无效
	agsafeset(_node, "style", "filled", "");  
	if (color == 0)
	{
		agsafeset(_node, "fillcolor", "red", "");   // 填充红色
		agsafeset(_node, "fontcolor", "white", ""); // 字体白色
	}
	else {
		agsafeset(_node, "fillcolor", "black", ""); // 填充黑色
		agsafeset(_node, "fontcolor", "white", ""); // 字体白色
	}
	if (_parent != NULL)
	{
		agedge(g, _parent, _node, NULL, 1);
	}
#ifdef SINGLE_NIL
	// 启用SINGLE_NIL, 绘制类似于算法导论175页中的图13-1(b)
	else {
		// 如果parent为NULL,说明该结点是根结点,因此获取NIL结点作为根结点的父节点
		// agnode的第二个参数name如果和已经存在的某个结点一样,那么agnode直接返回已存在的结点
		// 将name置为空,获取全图唯一的NIL结点
		Agnode_t * root_parent = agnode(g, "", 1);
		agsafeset(root_parent, "label", "NIL", "");
		agsafeset(root_parent, "style", "filled", "");
		agsafeset(root_parent, "fillcolor", "black", "");
		agsafeset(root_parent, "fontcolor", "white", "");
		agedge(g, _node, root_parent, NULL, 1);
	}
#endif
	return _node;
}

渲染的结果图如下,不足之处是显示的不够对称

三、完整代码

下面红黑树引用了参考链接2中的实现

#include <iostream>
#include <queue>
using namespace std;

enum COLOR { RED, BLACK };

class Node {
public:
	int val;
	COLOR color;
	Node *left, *right, *parent;

	Node(int val) : val(val) {
		parent = left = right = NULL;

		// Node is created during insertion
		// Node is red at insertion
		color = RED;
	}

	// returns pointer to uncle
	Node *uncle() {
		// If no parent or grandparent, then no uncle
		if (parent == NULL || parent->parent == NULL)
			return NULL;

		if (parent->isOnLeft())
			// uncle on right
			return parent->parent->right;
		else
			// uncle on left
			return parent->parent->left;
	}

	// check if node is left child of parent
	bool isOnLeft() { return this == parent->left; }

	// returns pointer to sibling
	Node *sibling() {
		// sibling null if no parent
		if (parent == NULL)
			return NULL;

		if (isOnLeft())
			return parent->right;

		return parent->left;
	}

	// moves node down and moves given node in its place
	void moveDown(Node *nParent) {
		if (parent != NULL) {
			if (isOnLeft()) {
				parent->left = nParent;
			}
			else {
				parent->right = nParent;
			}
		}
		nParent->parent = parent;
		parent = nParent;
	}

	bool hasRedChild() {
		return (left != NULL && left->color == RED) ||
			(right != NULL && right->color == RED);
	}
};

class RBTree {
	Node *root;

	// left rotates the given node
	void leftRotate(Node *x) {
		// new parent will be node's right child
		Node *nParent = x->right;

		// update root if current node is root
		if (x == root)
			root = nParent;

		x->moveDown(nParent);

		// connect x with new parent's left element
		x->right = nParent->left;
		// connect new parent's left element with node
		// if it is not null
		if (nParent->left != NULL)
			nParent->left->parent = x;

		// connect new parent with x
		nParent->left = x;
	}

	void rightRotate(Node *x) {
		// new parent will be node's left child
		Node *nParent = x->left;

		// update root if current node is root
		if (x == root)
			root = nParent;

		x->moveDown(nParent);

		// connect x with new parent's right element
		x->left = nParent->right;
		// connect new parent's right element with node
		// if it is not null
		if (nParent->right != NULL)
			nParent->right->parent = x;

		// connect new parent with x
		nParent->right = x;
	}

	void swapColors(Node *x1, Node *x2) {
		COLOR temp;
		temp = x1->color;
		x1->color = x2->color;
		x2->color = temp;
	}

	void swapValues(Node *u, Node *v) {
		int temp;
		temp = u->val;
		u->val = v->val;
		v->val = temp;
	}

	// fix red red at given node
	void fixRedRed(Node *x) {
		// if x is root color it black and return
		if (x == root) {
			x->color = BLACK;
			return;
		}

		// initialize parent, grandparent, uncle
		Node *parent = x->parent, *grandparent = parent->parent,
			*uncle = x->uncle();

		if (parent->color != BLACK) {
			if (uncle != NULL && uncle->color == RED) {
				// uncle red, perform recoloring and recurse
				parent->color = BLACK;
				uncle->color = BLACK;
				grandparent->color = RED;
				fixRedRed(grandparent);
			}
			else {
				// Else perform LR, LL, RL, RR
				if (parent->isOnLeft()) {
					if (x->isOnLeft()) {
						// for left right
						swapColors(parent, grandparent);
					}
					else {
						leftRotate(parent);
						swapColors(x, grandparent);
					}
					// for left left and left right
					rightRotate(grandparent);
				}
				else {
					if (x->isOnLeft()) {
						// for right left
						rightRotate(parent);
						swapColors(x, grandparent);
					}
					else {
						swapColors(parent, grandparent);
					}

					// for right right and right left
					leftRotate(grandparent);
				}
			}
		}
	}

	// find node that do not have a left child
	// in the subtree of the given node
	Node *successor(Node *x) {
		Node *temp = x;

		while (temp->left != NULL)
			temp = temp->left;

		return temp;
	}

	// find node that replaces a deleted node in BST
	Node *BSTreplace(Node *x) {
		// when node have 2 children
		if (x->left != NULL && x->right != NULL)
			return successor(x->right);

		// when leaf
		if (x->left == NULL && x->right == NULL)
			return NULL;

		// when single child
		if (x->left != NULL)
			return x->left;
		else
			return x->right;
	}

	// deletes the given node
	void deleteNode(Node *v) {
		Node *u = BSTreplace(v);

		// True when u and v are both black
		bool uvBlack = ((u == NULL || u->color == BLACK) && (v->color == BLACK));
		Node *parent = v->parent;

		if (u == NULL) {
			// u is NULL therefore v is leaf
			if (v == root) {
				// v is root, making root null
				root = NULL;
			}
			else {
				if (uvBlack) {
					// u and v both black
					// v is leaf, fix double black at v
					fixDoubleBlack(v);
				}
				else {
					// u or v is red
					if (v->sibling() != NULL)
						// sibling is not null, make it red"
						v->sibling()->color = RED;
				}

				// delete v from the tree
				if (v->isOnLeft()) {
					parent->left = NULL;
				}
				else {
					parent->right = NULL;
				}
			}
			delete v;
			return;
		}

		if (v->left == NULL || v->right == NULL) {
			// v has 1 child
			if (v == root) {
				// v is root, assign the value of u to v, and delete u
				v->val = u->val;
				v->left = v->right = NULL;
				delete u;
			}
			else {
				// Detach v from tree and move u up
				if (v->isOnLeft()) {
					parent->left = u;
				}
				else {
					parent->right = u;
				}
				delete v;
				u->parent = parent;
				if (uvBlack) {
					// u and v both black, fix double black at u
					fixDoubleBlack(u);
				}
				else {
					// u or v red, color u black
					u->color = BLACK;
				}
			}
			return;
		}

		// v has 2 children, swap values with successor and recurse
		swapValues(u, v);
		deleteNode(u);
	}

	void fixDoubleBlack(Node *x) {
		if (x == root)
			// Reached root
			return;

		Node *sibling = x->sibling(), *parent = x->parent;
		if (sibling == NULL) {
			// No sibiling, double black pushed up
			fixDoubleBlack(parent);
		}
		else {
			if (sibling->color == RED) {
				// Sibling red
				parent->color = RED;
				sibling->color = BLACK;
				if (sibling->isOnLeft()) {
					// left case
					rightRotate(parent);
				}
				else {
					// right case
					leftRotate(parent);
				}
				fixDoubleBlack(x);
			}
			else {
				// Sibling black
				if (sibling->hasRedChild()) {
					// at least 1 red children
					if (sibling->left != NULL && sibling->left->color == RED) {
						if (sibling->isOnLeft()) {
							// left left
							sibling->left->color = sibling->color;
							sibling->color = parent->color;
							rightRotate(parent);
						}
						else {
							// right left
							sibling->left->color = parent->color;
							rightRotate(sibling);
							leftRotate(parent);
						}
					}
					else {
						if (sibling->isOnLeft()) {
							// left right
							sibling->right->color = parent->color;
							leftRotate(sibling);
							rightRotate(parent);
						}
						else {
							// right right
							sibling->right->color = sibling->color;
							sibling->color = parent->color;
							leftRotate(parent);
						}
					}
					parent->color = BLACK;
				}
				else {
					// 2 black children
					sibling->color = RED;
					if (parent->color == BLACK)
						fixDoubleBlack(parent);
					else
						parent->color = BLACK;
				}
			}
		}
	}

	// prints level order for given node
	void levelOrder(Node *x) {
		if (x == NULL)
			// return if node is null
			return;

		// queue for level order
		queue<Node *> q;
		Node *curr;

		// push x
		q.push(x);

		while (!q.empty()) {
			// while q is not empty
			// dequeue
			curr = q.front();
			q.pop();

			// print node value
			cout << curr->val << " ";

			// push children to queue
			if (curr->left != NULL)
				q.push(curr->left);
			if (curr->right != NULL)
				q.push(curr->right);
		}
	}

	// prints inorder recursively
	void inorder(Node *x) {
		if (x == NULL)
			return;
		inorder(x->left);
		cout << x->val << " ";
		inorder(x->right);
	}

public:
	// constructor
	// initialize root
	RBTree() { root = NULL; }

	Node *getRoot() { return root; }

	// searches for given value
	// if found returns the node (used for delete)
	// else returns the last node while traversing (used in insert)
	Node *search(int n) {
		Node *temp = root;
		while (temp != NULL) {
			if (n < temp->val) {
				if (temp->left == NULL)
					break;
				else
					temp = temp->left;
			}
			else if (n == temp->val) {
				break;
			}
			else {
				if (temp->right == NULL)
					break;
				else
					temp = temp->right;
			}
		}

		return temp;
	}

	// inserts the given value to tree
	void insert(int n) {
		Node *newNode = new Node(n);
		if (root == NULL) {
			// when root is null
			// simply insert value at root
			newNode->color = BLACK;
			root = newNode;
		}
		else {
			Node *temp = search(n);

			if (temp->val == n) {
				// return if value already exists
				return;
			}

			// if value is not found, search returns the node
			// where the value is to be inserted

			// connect new node to correct node
			newNode->parent = temp;

			if (n < temp->val)
				temp->left = newNode;
			else
				temp->right = newNode;

			// fix red red voilaton if exists
			fixRedRed(newNode);
		}
	}

	// utility function that deletes the node with given value
	void deleteByVal(int n) {
		if (root == NULL)
			// Tree is empty
			return;

		Node *v = search(n), *u;

		if (v->val != n) {
			cout << "No node found to delete with value:" << n << endl;
			return;
		}

		deleteNode(v);
	}

	// prints inorder of the tree
	void printInOrder() {
		cout << "Inorder: " << endl;
		if (root == NULL)
			cout << "Tree is empty" << endl;
		else
			inorder(root);
		cout << endl;
	}

	// prints level order of the tree
	void printLevelOrder() {
		cout << "Level order: " << endl;
		if (root == NULL)
			cout << "Tree is empty" << endl;
		else
			levelOrder(root);
		cout << endl;
	}
};


#include<graphviz/gvc.h>

// #define SINGLE_NIL   // 将所有的NIL当作一个结点

char __node_name[20];

char * get_node_name(int val, char * leaf_str)
{
	if (leaf_str == NULL)
	{
		itoa(val, __node_name, 10);
		return __node_name;
	}
	else {
#ifdef SINGLE_NIL
		// 如果结点的name全部都为空字符串,那么实际上agnode获取到的都是同一个结点
		// 从而实现了将所有的叶结点当作同一个结点的需求
		return "";
	}
#else
		// 从这里返回的每个叶结点的name都不相同,因此agnode获取到的都是不同的叶结点
		// 从而实现了每个叶结点单独显示的需求
		sprintf(__node_name, "%s/%d", leaf_str, val);
		return __node_name;
	}
#endif
}

Agnode_t * __draw_rb_node(Agraph_t * g, Agnode_t * _parent, char * name, char * label, int color)
{
	Agnode_t * _node = agnode(g, name, 1);
	if (label != NULL)
	{
		// 如果注释下面这一句, 不设置label, 输出的图上结点显示name属性
		// 设置了label之后则会显示label
		agsafeset(_node, "label", label, "");
	}
	// 必须加这一句,否则下面的fillcolor属性设置无效
	agsafeset(_node, "style", "filled", "");  
	if (color == 0)
	{
		agsafeset(_node, "fillcolor", "red", "");   // 填充红色
		agsafeset(_node, "fontcolor", "white", ""); // 字体白色
	}
	else {
		agsafeset(_node, "fillcolor", "black", ""); // 填充黑色
		agsafeset(_node, "fontcolor", "white", ""); // 字体白色
	}
	if (_parent != NULL)
	{
		agedge(g, _parent, _node, NULL, 1);
	}
#ifdef SINGLE_NIL
	// 启用SINGLE_NIL, 绘制类似于算法导论175页中的图13-1(b)
	else {
		// 如果parent为NULL,说明该结点是根结点,因此获取NIL结点作为根结点的父节点
		// agnode的第二个参数name如果和已经存在的某个结点一样,那么agnode直接返回已存在的结点
		// 将name置为空,获取全图唯一的NIL结点
		Agnode_t * root_parent = agnode(g, "", 1);
		agsafeset(root_parent, "label", "NIL", "");
		agsafeset(root_parent, "style", "filled", "");
		agsafeset(root_parent, "fillcolor", "black", "");
		agsafeset(root_parent, "fontcolor", "white", "");
		agedge(g, _node, root_parent, NULL, 1);
	}
#endif
	return _node;
}

void __draw_rb(Agraph_t * g, Agnode_t * _parent, Node * parent_node, Node * _node)
{
	if (_node != NULL)
	{
		// 当前结点不是叶结点
		_parent = __draw_rb_node(g, _parent, get_node_name(_node->val, NULL), NULL, _node->color);
	}

	if (_node->left != NULL)
	{
		// 左孩子不是叶结点
		__draw_rb(g, _parent, _node, _node->left);
	}
	else {
		// 左孩子是叶结点 NIL
		__draw_rb_node(g, _parent, get_node_name(_node->val, "lnil"), "NIL", 1);
	}

	if (_node->right != NULL)
	{
		// 右孩子不是叶结点
		__draw_rb(g, _parent, _node, _node->right);
	}
	else {
		// 右孩子是叶结点 NIL
		__draw_rb_node(g, _parent, get_node_name(_node->val, "rnil"), "NIL", 1);
	}
	return;
}

void draw_rb(Node * root)
{
	// 1 创建上下文,存储graph和渲染方法等
	GVC_t * gvc = gvContext();  
	// 2 创建一个 graph
	Agraph_t * g = agopen("g", Agdirected, 0);
	// 3 开始绘图
	__draw_rb(g, NULL, NULL, root);  // rbtree绘图方法
	// 4 指定输出的图像质量
	agsafeset(g, "dpi", "600", "");
	// 5 指定布局方式,文档中有8种布局方式可选,这里选择"dot"生成红黑树
	gvLayout(gvc, g, "dot");
	// 6 输出图片
	gvRenderFilename(gvc, g, "png", "D:\\test.png");
	// 7 释放内存
	gvFreeLayout(gvc, g);
	agclose(g);
	gvFreeContext(gvc);
}


int rb_main() {
	RBTree tree;

	tree.insert(20);
	tree.insert(12);
	tree.insert(23);
	tree.insert(11);
	tree.insert(15);
	tree.insert(22);
	tree.insert(32);
	tree.insert(5);
	tree.insert(13);
	tree.insert(17);
	tree.insert(25);
	tree.insert(33);

	draw_rb(tree.getRoot());
	return 0;
}

Reference:

1、https://graphviz.org/pdf/libguide.pdf

2、Red-Black Tree | Set 1 (Introduction) - GeeksforGeeks

  • 3
    点赞
  • 28
    收藏
    觉得还不错? 一键收藏
  • 15
    评论
Graphviz是一款开源的图形可视化工具,可以将描述图形的代码转换成图形。如果你想在c语言中调用Graphviz,通常可以通过以下步骤实现: 1. 安装Graphviz工具:在Graphviz官网上下载并安装Graphviz工具,安装完成后将Graphviz安装目录添加到系统环境变量中。 2. 在c语言中调用Graphviz API:Graphviz提供了C语言的API,可以通过这些API来生成图形。在c语言中引入Graphviz API头文件,并调用Graphviz提供的函数来生成图形。 3. 编写描述图形的代码:使用Graphviz的语言描述工具(如DOT语言)编写描述图形的代码。 4. 将描述图形的代码传递给Graphviz API:将描述图形的代码传递给Graphviz API,调用API生成图形。 下面是一个简单的示例代码,可以在c语言中使用Graphviz API来生成一个简单的图形: ```c #include <stdio.h> #include <stdlib.h> #include <gvc.h> int main(int argc, char **argv) { GVC_t *gvc; graph_t *g; node_t *n1, *n2, *n3; /* 创建一个图形 */ gvc = gvContext(); g = agopen("g", Agdirected, NULL); /* 创建三个节点 */ n1 = agnode(g, "n1", 1); n2 = agnode(g, "n2", 1); n3 = agnode(g, "n3", 1); /* 添加边 */ agedge(g, n1, n2, NULL, 1); agedge(g, n2, n3, NULL, 1); /* 渲染图形 */ gvLayout(gvc, g, "dot"); gvRenderFilename(gvc, g, "png", "output.png"); /* 释放内存 */ gvFreeLayout(gvc, g); agclose(g); gvFreeContext(gvc); return 0; } ``` 在这个示例代码中,我们使用Graphviz API创建了一个有三个节点和两个边的图形,并将图形渲染成PNG格式的图片。你可以根据自己的需求修改代码来生成不同的图形。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 15
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值