【文件属性】:
文件名称:最大团问题
文件大小:3KB
文件格式:RAR
更新时间:2019-01-10 12:19:48
最大团
template
void Make1DArray(T * &x, int cols){
x = new T[cols];
}
template
void Make2DArray(T ** &x, int rows, int cols){
x = new T * [rows];
for (int i = 0; i < rows; i++)
x[i] = new T[cols];
}
template
void Make3DArray(T *** &x, int plan, int rows, int cols){
x = new T ** [plan];
for (int i = 0; i < plan; i++)
x[i] = new T* [rows];
for (int i = 0; i < plan; i++)
for (int j = 0; j < rows; j++)
x[i][j] = new T[cols];
【文件预览】:
www.pudn.com.txt
最大团问题
----maxclique.cpp(506B)
----TSP.h(2KB)
----data.txt(56B)
----make2db.h(977B)
----cclique.h(2KB)