摘要: /********************************************************************************************** * func name : LList_Last_k_find * function : Find the 阅读全文
posted @ 2024-04-23 10:22 沉舟道人 阅读(18) 评论(0) 推荐(0) 编辑
摘要: /********************************************************************************************** * func name : Minnote_Del * function : Delete the min 阅读全文
posted @ 2024-04-23 09:11 沉舟道人 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 数据结构 #include<stdio.h> //顺序表从k开始的后继元素向后移动一个单位 void DataMov(int num[],int count,int k) { for (int i=count-1; i>=k; i--) { num[i+1]=num[i]; } } //遍历数据表 阅读全文
posted @ 2024-04-22 00:07 沉舟道人 阅读(31) 评论(0) 推荐(3) 编辑