5424| 3
|
[已解决]编程实现由偏序集合构造全序集合,最好能用C或C++编写,谢谢了 |
10鱼币
最佳答案#include
#include
#include
using namespace std;
ifstream fin("in.txt");
#define MAX_VERTEX_NUM 26
stack s;
typedef struct ArcNode{
int adjvex;
struct ArcNode *nextarc;
ArcNode(){nextarc=0;}
// InfoType *info;
}ArcNode;
typedef struct VNode{
int data;
ArcNode *firstarc;
VNode(){firstarc=0;}
}VNode,AdjList ...
| ||
小甲鱼最新课程 -> https://ilovefishc.com
|
||
| ||
小甲鱼最新课程 -> https://ilovefishc.com
|
||
| ||
小甲鱼最新课程 -> https://ilovefishc.com
|
||
小黑屋|手机版|Archiver|鱼C工作室
( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)
GMT+8, 2025-4-20 01:03
Powered by Discuz! X3.4
© 2001-2023 Discuz! Team.