queen.w
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:2k
源码类别:

通讯编程

开发平台:

Visual C++

  1. % This file is part of the Stanford GraphBase (c) Stanford University 1993
  2. @i boilerplate.w %<< legal stuff: PLEASE READ IT BEFORE MAKING ANY CHANGES!
  3. @i gb_types.w
  4. deftitle{QUEEN}
  5. @* Queen moves.
  6. This is a short demonstration of how to generate and traverse graphs
  7. with the Stanford GraphBase. It creates a graph with 12 vertices,
  8. representing the cells of a $3times4$ rectangular board; two
  9. cells are considered adjacent if you can get from one to another
  10. by a queen move. Then it prints a description of the vertices and
  11. their neighbors, on the standard output file.
  12. An ASCII file called .{queen.gb} is also produced. Other programs
  13. can obtain a copy of the queen graph by calling |restore_graph("queen.gb")|.
  14. You might find it interesting to compare the output of {sc QUEEN} with
  15. the contents of .{queen.gb}; the former is intended to be readable
  16. by human beings, the latter by computers.
  17. @p
  18. #include "gb_graph.h" /* we use the {sc GB_,GRAPH} data structures */
  19. #include "gb_basic.h" /* we test the basic graph operations */
  20. #include "gb_save.h" /* and we save our results in ASCII format */
  21. @#
  22. main()
  23. {@+Graph *g,*gg,*ggg;
  24.   g=board(3L,4L,0L,0L,-1L,0L,0L); /* a graph with rook moves */
  25.   gg=board(3L,4L,0L,0L,-2L,0L,0L); /* a graph with bishop moves */
  26.   ggg=gunion(g,gg,0L,0L); /* a graph with queen moves */
  27.   save_graph(ggg,"queen.gb"); /* generate an ASCII file for |ggg| */
  28.   @<Print the vertices and edges of |ggg|@>;
  29.   return 0; /* normal exit */
  30. }
  31. @ @<Print the vertices and edges of |ggg|@>=
  32. if (ggg==NULL) printf("Something went wrong (panic code %ld)!n",panic_code);
  33. else {
  34.   register Vertex *v; /* current vertex being visited */
  35.   printf("Queen Moves on a 3x4 Boardnn");
  36.   printf("  The graph whose official name isn%sn", ggg->id);
  37.   printf("  has %ld vertices and %ld arcs:nn", ggg->n, ggg->m);
  38.   for (v=ggg->vertices; v<ggg->vertices+ggg->n; v++) {
  39.     register Arc *a; /* current arc from |v| */
  40.     printf("%sn", v->name);
  41.     for (a=v->arcs; a; a=a->next)
  42.       printf("  -> %s, length %ldn", a->tip->name, a->len);
  43.   }
  44. }
  45. @* Index.