由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
CS版 - 问graph问题
相关主题
DAG question问问Boost library, 尤其是Boost Graph Library (BGL)
data structure for set of path in a graph (转载)请教directed acyclic graph
请问一个图的分解问题Re: How to find all cycles in a directed
一道graph的问题求教!(from MIT Intro to Algo)如何找到两点之间所有的路径?
一个大数据 处理问题请教:用google analytics 分析网站访问流量 (转载)
A probability probelm about graph (network)请推荐几个大的 graph dataset
TSP for a special graphQuestion about Bipartite Graphs
This Woman is really cutegraph question: what is "genus" ? (转载)
相关话题的讨论汇总
话题: graph话题: paths话题: edges话题: removing
进入CS版参与讨论
1 (共1页)
t*****k
发帖数: 390
1
For a directed graph without cycles, if I removed some paths from this graph
(does not mean removing edges), how can I reconstruct the graph without the
se edges easily? Thanks!
If someone knows the references, that will be also good :) Many thanks!
s******e
发帖数: 285
2
没看懂你说什么,不如用中文表述吧。。。

graph
the

【在 t*****k 的大作中提到】
: For a directed graph without cycles, if I removed some paths from this graph
: (does not mean removing edges), how can I reconstruct the graph without the
: se edges easily? Thanks!
: If someone knows the references, that will be also good :) Many thanks!

v********e
发帖数: 1058
3
me neither

【在 s******e 的大作中提到】
: 没看懂你说什么,不如用中文表述吧。。。
:
: graph
: the

m*****f
发帖数: 1243
4
if I removed some paths from this graph
(does not mean removing edges)
????
z1
发帖数: 389
5
path is consisit of edges ...

graph
the

【在 t*****k 的大作中提到】
: For a directed graph without cycles, if I removed some paths from this graph
: (does not mean removing edges), how can I reconstruct the graph without the
: se edges easily? Thanks!
: If someone knows the references, that will be also good :) Many thanks!

t*****k
发帖数: 390
6
比如graph里有4条paths:A->B->C->D, E->B->C->F, E->B->C->D, A->B->C->F,我rem
ove掉前2条paths,但保留后两条,有没有可能重新reconstruct graph实现这个目的,
可以加一些dummy nodes...

graph
the

【在 t*****k 的大作中提到】
: For a directed graph without cycles, if I removed some paths from this graph
: (does not mean removing edges), how can I reconstruct the graph without the
: se edges easily? Thanks!
: If someone knows the references, that will be also good :) Many thanks!

v********e
发帖数: 1058
7
i still don't understand. what is "reconstuct graph"?

rem

【在 t*****k 的大作中提到】
: 比如graph里有4条paths:A->B->C->D, E->B->C->F, E->B->C->D, A->B->C->F,我rem
: ove掉前2条paths,但保留后两条,有没有可能重新reconstruct graph实现这个目的,
: 可以加一些dummy nodes...
:
: graph
: the

t*****k
发帖数: 390
8
这个问题是这样的,你可以认为是找longest paths。
对一个图来说,每个edge都有一个weight,我要找一条path,构成他的edge的weight之
和最大...
现在我要从这个 graph中抽出N条paths出来,找这个graph中除去这N条paths后最longe
st 的path

【在 v********e 的大作中提到】
: i still don't understand. what is "reconstuct graph"?
:
: rem

v********e
发帖数: 1058
9
finding longest path is NP hard

longe

【在 t*****k 的大作中提到】
: 这个问题是这样的,你可以认为是找longest paths。
: 对一个图来说,每个edge都有一个weight,我要找一条path,构成他的edge的weight之
: 和最大...
: 现在我要从这个 graph中抽出N条paths出来,找这个graph中除去这N条paths后最longe
: st 的path

h*******e
发帖数: 225
10
His original post said it was a DAG, then you can use DP.

【在 v********e 的大作中提到】
: finding longest path is NP hard
:
: longe

v********e
发帖数: 1058
11
orz.. when reading his last post, i then ignored his first one.. -_-b

【在 h*******e 的大作中提到】
: His original post said it was a DAG, then you can use DP.
1 (共1页)
进入CS版参与讨论
相关主题
graph question: what is "genus" ? (转载)一个大数据 处理问题
Looking for 3D volume rendering C LibrarA probability probelm about graph (network)
帮忙下载一篇paperTSP for a special graph
from power spectra to original signalThis Woman is really cute
DAG question问问Boost library, 尤其是Boost Graph Library (BGL)
data structure for set of path in a graph (转载)请教directed acyclic graph
请问一个图的分解问题Re: How to find all cycles in a directed
一道graph的问题求教!(from MIT Intro to Algo)如何找到两点之间所有的路径?
相关话题的讨论汇总
话题: graph话题: paths话题: edges话题: removing