#include#includetypedef
struct
node
node;
//初始化 我的實現邏輯就是生成乙個結點用來儲存鍊錶的頭結點
//然後將這個節點的位址返回 這樣我們就生成了乙個頭結點
node*init()
//傳入鍊錶的頭指標 和要插入的資料
void add(node* list,int
data)
//引數 要刪除的鍊錶 和要刪除的資料
void delete(node* list,int
del_data)
//這裡就寫乙個根據下標查詢吧 根據下標刪除 和根據值查詢自己寫
int select(node* list,int
index)
void
alter()
void insert(node* list,int index,int
data)
void show(node*list)
printf(
"]\n");
}int
main()
第一章 線性結構 順序儲存結構
如下 資料結構 第一章 熟練使用 增刪查改 include include 定義順序表 typedef struct table list 順序表的初始化 void init list l,int max 為什麼要傳指標?void show list l 順序表的插入 void insert lis...
第一章 線性模型
線性回歸 f x wx b 有監督學習 根據已知的資料集t來計算引數w和b 極大似然法 cost function 注意要特徵歸一化 好處 1 提公升模型收斂速度 2 提公升模型精度 邏輯回歸 分類 對數概率函式 1 1 exp z z wx b 線性判別分析 linear discriminant...
第一章 線性規劃
注意 請安裝 tex all the things 這款chrome瀏覽器外掛程式才能正確顯示公式。鏈結如下 一 線性規劃的matlab標準形式及軟體求解 begin begin x end end begin a cdot le b aeq cdot beq lb le le ub end rig...