是否有可能使用 C++ 中的循环创建柠檬图?
我的问题:
- 具有列的数据库表(我们称之为 t_nodes):节点
- 带有图形信息的数据库表(我们称之为 t_edges):node1 | 节点2 | 边缘分数
- 超过 10000 个条目
我想要的结果:
- 有向图:例如 N1 -> N2;N2 -> N3;N3 -> N1
我的问题
是否可以对表中的每个条目使用循环来将节点添加到图中
t_nodes
- 到目前为止,我只是找到了他们手动添加每个节点的实现(参见下面的示例)
- 真的没有机会使用循环将节点添加到柠檬图中吗?
如何对 中提到的所有关系使用循环
t_edges
?
感谢您的宝贵时间,非常感谢您的帮助!
在周末有一些空闲时间并花一些时间骑自行车后,我找到了解决方案:)
我的解决方案:
看起来,柠檬没有提供支持图表边缘的附加信息的可能性。因此,我刚刚创建了一个额外的向量来存储这些信息。但是,出于某些目的,使用哈希图访问节点可能更明智。
看看开发的示例脚本(非常简单;))
Lemon C++-代码示例(参考: http: //lemon.cs.elte.hu/pub/tutorial/a00022.html):
/* -*- mode: C++; indent-tabs-mode: nil; -*-
*
* This file is a part of LEMON, a generic C++ optimization library.
*
* Copyright (C) 2003-2010
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
*
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
*
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
* purpose.
*
*/
#include <iostream>
#include <lemon/list_graph.h>
using namespace lemon;
using namespace std;
int main()
{
ListDigraph g;
ListDigraph::Node u = g.addNode();
ListDigraph::Node v = g.addNode();
ListDigraph::Arc a = g.addArc(u, v);
cout << "Hello World! This is LEMON library here." << endl;
cout << "We have a directed graph with " << countNodes(g) << " nodes "
<< "and " << countArcs(g) << " arc." << endl;
return 0;
// Further development
ListDigraph graph;
vector <string> name;
name.push_back("A");
name.push_back("B");
name.push_back("C");
for (unsigned int n=0; n<name.size(); n++) {
ListDigraph::Node node = graph.addNode();
lemon_node_vector[n].id = n;
lemon_node_vector[n].name = name[n];
}
}