read_graph.c
上传用户:gzelex
上传日期:2007-01-07
资源大小:707k
文件大小:1k
开发平台:

MultiPlatform

  1. #include <LEDA/graph.h>
  2. void Read(GRAPH<float,float>& G, istream& is) { G.read(is); }
  3. void Print(const GRAPH<float,float>& G, ostream& os) { G.write(os); }
  4. int compare(const GRAPH<float,float>&, const GRAPH<float,float>&) { return 0; }
  5. #if !defined(__TEMPLATE_FUNCTIONS__)
  6. typedef GRAPH<float,float> ff_graph;
  7. LEDA_TYPE_PARAMETER(ff_graph)
  8. #endif
  9. main()
  10. {
  11.   GRAPH<GRAPH<float,float>,string> G;
  12.   int n = G.read(read_string("read graph from file: "));
  13.   cout << "n = " << n << "n";
  14.   G.print();
  15.   return 0;
  16. }