摘要: 1 #include<stdio.h> 2 #include<stdlib.h> 3 #define MAXN 1000000 4 void Matrix_Chain_Order(int * p, int * s, int N) 5 { 6 int n = N - 1; 7 int m[N][N]; 8 for(int i = 1; i <= n; i++) 9 {10 m[i][i] = 0; 11 } 12 for(int l = 2; l <= n; l+... 阅读全文
posted @ 2012-11-25 18:39 缓冲区溢出 阅读(307) 评论(0) 推荐(0) 编辑