2020年3月25日

求解矩阵特征值-determinant

摘要: int cal_N_det(int a[MAX][MAX], int N){ int det=0; int temp[MAX][MAX]; int index, row, column, i, j; if(N==1){ // only one element return a[0][0]; } el 阅读全文

posted @ 2020-03-25 13:49 BruceSue 阅读(357) 评论(0) 推荐(0) 编辑

dynamic programming-unique path

摘要: classic dynamic problem, ultimately it's iterative problem, like how to calculate the determinant of matrix. The code below is performed by @someone. 阅读全文

posted @ 2020-03-25 13:41 BruceSue 阅读(109) 评论(0) 推荐(0) 编辑

导航