摘要:
1.链表写法: #include <stdio.h> #include <stdlib.h> #include <iostream> using namespace std; typedef struct node{ int m; int id; struct node * next; }node; 阅读全文
摘要:
#include<stdio.h>//一元稀疏多项式的计算 #include<iostream> #include<stdlib.h> using namespace std; typedef struct PolyNode // 结构体 { float coef; //系数 int exp; // 阅读全文
摘要:
大致思路: 将地铁线路的抽象问题转化为图上最短路径的具体问题,那么最大的难点如何抽象出来。 1.用结构体存储每个站点的信息:包括编号、名称、所经过的线路; 2.names数组存储每个不通过站点的名字,其下表对应着站点的标号,这样读取数据时,可以利用它保证每个站点不被重复构建; 3.map二维数组存储 阅读全文