摘要:
DLL 导出类 DLL 中定义的类可以在应用工程中使用。 接下来,我将演示在 DLL 中定义 point 和 circle 两个类, 并在应用工程中引用了他们。 通过 DLL 中的 class _declspec(dllexport) point // 导出类 point class _declsp 阅读全文
摘要:
Floyd算法 是一种用于寻找给定的加权图中多源点之间最短路径的算法。 #include<stdio.h> #include<stdlib.h> #define max 1000000000 int d[1000][1000]; int main() { int i,j,k,m,n; int x,y 阅读全文