When submitting a solution in C++, please select either C++14 (GCC 6-32) or C++17 (GCC 7-32) as your compiler. ×

OmaeWaMouShenDeiru's blog

By OmaeWaMouShenDeiru, history, 9 years ago, In English

Hey,

What is the concept behind graph problems test case generation.

How can I write a random test case generator ?

| Write comment?
»
9 years ago, # |
  Vote: I like it +11 Vote: I do not like it

You can use Spoj-Toolkit

»
9 years ago, # |
  Vote: I like it +1 Vote: I do not like it

Do you need connected graph?

»
9 years ago, # |
Rev. 2   Vote: I like it +8 Vote: I do not like it

Well, what is a graph? It's a set vertices with a set of pairs of these vertices.
Once the number of vertices and the number of edges are fixed you need just to generate several random pairs. That's it.
However, the resulting graph might be not so good for a specific problem so you may need to specialize this generation algorithm. For instance, if you need a connected graph one possible way is to generate a tree first and then add some more edges (you can see how tree can be generated in testlib examples).

  • »
    »
    9 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Thank you all.

    Im not looking for specific type of graphs, I want to learn a concept so I become able to generate any type of graphs any time needed.

»
6 years ago, # |
  Vote: I like it +1 Vote: I do not like it

Why spoj-toolkit is taking too much time to generate string/tree of size 100000,and still not generating. At bottom , it's showing "connecting to server".

»
6 years ago, # |
  Vote: I like it +3 Vote: I do not like it

Well, I first build a random tree using Prufer Code and then simply add random edges to that tree to convert it into Graph. Since I first built the tree using Prufer Code, the graph finally built is connected.

I don't know if this is the proper method of building graph, but for generating random trees, Prufer Code is the proper method.

More on Prufer Code.

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it
  • »
    »
    14 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    It was a great help. I used it for years, but now it's gone. Any other tools like that?