由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
CS版 - 请问一个图的分解问题
相关主题
一道graph的问题求教!(from MIT Intro to Algo)请推荐几个大的 graph dataset
A probability probelm about graph (network)Question about Bipartite Graphs
问graph问题graph question: what is "genus" ? (转载)
Re: 请教一个 graph connectivity 的问题关于CS的一个问题
请问什么是quotient graph?一点感想Re: 罗马尼亚版神雕侠侣 Re: 美国的小朋友真牛啊
data structure for set of path in a graph (转载)What is this course for?
DAG questionP != NP 被证出来了,同学们
一个大数据 处理问题[转载] exponential 算法负责度
相关话题的讨论汇总
话题: cycles话题: number话题: vertices话题: edges
进入CS版参与讨论
1 (共1页)
c*****u
发帖数: 530
1
想把一个图中包含的所有可能的cycle全部找出来。
想问一下这是不是一个P 问题,有没有什么好的解法。
谢谢
a******e
发帖数: 95
2
it is exponential.

【在 c*****u 的大作中提到】
: 想把一个图中包含的所有可能的cycle全部找出来。
: 想问一下这是不是一个P 问题,有没有什么好的解法。
: 谢谢

m*****r
发帖数: 9
3
In my memory, it seems to be P solvable. Anyway, this problem has been well
studied.

【在 a******e 的大作中提到】
: it is exponential.
l*****g
发帖数: 49
4

What do you mean by "getting all possible cycles"?
It is easy to construct a graph (with n vertices and O(n) edges) such that the
total number of cycles in that graph is exponential in n. So the output size
of your problem is already exponential.
You want to find some succint representations of all cycles?

【在 c*****u 的大作中提到】
: 想把一个图中包含的所有可能的cycle全部找出来。
: 想问一下这是不是一个P 问题,有没有什么好的解法。
: 谢谢

c****r
发帖数: 185
5
If one wants to find a set of independent cycles, he can do a depth-first
search.
Then each backtrack edge corresponds to an independent cycle.
The total number is m-n+1 where m is the number of edges and n is the number
of vertices.

the

【在 l*****g 的大作中提到】
:
: What do you mean by "getting all possible cycles"?
: It is easy to construct a graph (with n vertices and O(n) edges) such that the
: total number of cycles in that graph is exponential in n. So the output size
: of your problem is already exponential.
: You want to find some succint representations of all cycles?

1 (共1页)
进入CS版参与讨论
相关主题
[转载] exponential 算法负责度请问什么是quotient graph?
[转载] Re: 做题了做题了!!!data structure for set of path in a graph (转载)
一个问题:关于SATDAG question
请问这个词是什么意思?一个大数据 处理问题
一道graph的问题求教!(from MIT Intro to Algo)请推荐几个大的 graph dataset
A probability probelm about graph (network)Question about Bipartite Graphs
问graph问题graph question: what is "genus" ? (转载)
Re: 请教一个 graph connectivity 的问题关于CS的一个问题
相关话题的讨论汇总
话题: cycles话题: number话题: vertices话题: edges