⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gb_graph.h

📁 it is very important
💻 H
字号:
/*4:*/#line 62 "gb_graph.w"#include <stdio.h>#ifdef SYSV#include <string.h>#else#include <strings.h>#endif#undef min/*8:*/#line 134 "gb_graph.w"typedef union{struct vertex_struct*V;struct arc_struct*A;struct graph_struct*G;char*S;long I;}util;/*:8*//*9:*/#line 160 "gb_graph.w"typedef struct vertex_struct{struct arc_struct*arcs;char*name;util u,v,w,x,y,z;}Vertex;/*:9*//*10:*/#line 179 "gb_graph.w"typedef struct arc_struct{struct vertex_struct*tip;struct arc_struct*next;long len;util a,b;}Arc;/*:10*//*12:*/#line 232 "gb_graph.w"#define init_area(s)  *s= NULLstruct area_pointers{char*first;struct area_pointers*next;};typedef struct area_pointers*Area[1];/*:12*//*20:*/#line 375 "gb_graph.w"#define ID_FIELD_SIZE 161typedef struct graph_struct{Vertex*vertices;long n;long m;char id[ID_FIELD_SIZE];char util_types[15];Area data;Area aux_data;util uu,vv,ww,xx,yy,zz;}Graph;/*:20*//*34:*/#line 668 "gb_graph.w"typedef unsigned long siz_t;/*:34*/#line 70 "gb_graph.w"/*:4*//*6:*/#line 86 "gb_graph.w"extern long verbose;extern long panic_code;/*:6*//*7:*/#line 103 "gb_graph.w"#define alloc_fault (-1) #define no_room 1 #define early_data_fault 10 #define late_data_fault 11 #define syntax_error 20 #define bad_specs 30 #define very_bad_specs 40 #define missing_operand 50 #define invalid_operand 60 #define impossible 90 /*:7*//*15:*/#line 290 "gb_graph.w"extern long gb_trouble_code;/*:15*//*17:*/#line 310 "gb_graph.w"extern char*gb_alloc();#define gb_typed_alloc(n,t,s) \               (t*)gb_alloc((long)((n)*sizeof(t)),s)extern void gb_free();/*:17*//*22:*/#line 427 "gb_graph.w"#define n_1  uu.I#define mark_bipartite(g,n1) g->n_1= n1,g->util_types[8]= 'I'/*:22*//*25:*/#line 472 "gb_graph.w"extern long extra_n;extern char null_string[];extern void make_compound_id();extern void make_double_compound_id();/*:25*//*33:*/#line 655 "gb_graph.w"extern siz_t edge_trick;/*:33*//*41:*/#line 800 "gb_graph.w"#define gb_new_graph gb_nugraph #define gb_new_arc gb_nuarc#define gb_new_edge gb_nuedgeextern Graph*gb_new_graph();extern void gb_new_arc();extern Arc*gb_virgin_arc();extern void gb_new_edge();extern char*gb_save_string();extern void switch_to_graph();extern void gb_recycle();/*:41*//*42:*/#line 838 "gb_graph.w"extern void hash_in();extern Vertex*hash_out();extern void hash_setup();extern Vertex*hash_lookup();/*:42*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -