?? c5-2.h
字號(hào):
/* c5-2.h 稀疏矩陣的三元組順序表存儲(chǔ)表示 */
#define MAXSIZE 100 /* 非零元個(gè)數(shù)的最大值 */
typedef struct
{
int i,j; /* 行下標(biāo),列下標(biāo) */
ElemType e; /* 非零元素值 */
}Triple;
typedef struct
{
Triple data[MAXSIZE+1]; /* 非零元三元組表,data[0]未用 */
int mu,nu,tu; /* 矩陣的行數(shù)、列數(shù)和非零元個(gè)數(shù) */
}TSMatrix;
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -