這個作業屬於那個課程
c語言程式設計ii
這個作業要求在**
我在這個課程的目標是
更好的學習函式
這個作業在那個具體方面幫助我實現目
以後的工作方面
參考文獻
c語言程式設計2
本題要求實現乙個函式,用於計算有n個元素的指標陣列s中最長的字串的長度。
函式介面定義:
int max_len( char *s, int n );
其中n個字串儲存在s中,函式max_len應返回其中最長字串的長度。
裁判測試程式樣例:
#include #include #include #define maxn 10
#define maxs 20
int max_len( char *s, int n );
int main()
; scanf("%d", &n);
for(i = 0; i < n; i++)
printf("%d\n", max_len(string, n));
return 0;
}/* 你的**將被嵌在這裡 */
輸入樣例:
4blue
yellow
redgreen
輸出樣例:
6一、實驗**
int max_len( char *s, int n )
;
這裡學生的學號共7位數字,其中第2、3位是專業編號。計算機專業的編號為02。
函式介面定義:
int countcs( struct listnode *head );
其中head是使用者傳入的學生學號鍊錶的頭指標;函式countcs統計並返回head鍊錶中專業為計算機的學生人數。
裁判測試程式樣例:
#include #include #include struct listnode ;
struct listnode *createlist(); /*裁判實現,細節不表*/
int countcs( struct listnode *head );
int main()
/* 你的**將被嵌在這裡 */
輸入樣例:
1021202
2022310
8102134
1030912
3110203
4021205
輸出樣例:
3一、實驗**
int countcs( struct listnode *head )
return num;
}
二、設計思路
三、錯誤截圖
問題:在j=j->next的時候,把-忘記帶了。
解決方法:加上》就行了。
四、執行截圖
本題要求實現兩個函式,分別將讀入的資料儲存為單鏈表、將鍊錶中偶數值的結點刪除。鍊錶結點定義如下:
struct listnode ;
函式介面定義:
struct listnode *createlist();
struct listnode *deleteeven( struct listnode *head );
函式createlist從標準輸入讀入一系列正整數,按照讀入順序建立單鏈表。當讀到−1時表示輸入結束,函式應返回指向單鏈表頭結點的指標。
函式deleteeven將單鏈表head中偶數值的結點刪除,返回結果鍊錶的頭指標。
裁判測試程式樣例:
#include #include struct listnode ;
struct listnode *createlist();
struct listnode *deleteeven( struct listnode *head );
void printlist( struct listnode *head )
printf("\n");
}int main()
/* 你的**將被嵌在這裡 */
輸入樣例:
1 2 2 3 4 5 6 7 -1
輸出樣例:
1 3 5 7
一、實驗**
二、設計思路
三、錯誤截圖
四、執行截圖
學習進度條
折線圖
學習總結
本週來說,可能在課外的時間比較多,事情有點多,當然,在學習方面也沒有怠慢,只是可能沒有那麼的上心,那麼在以後,我會更加的去學習這門課程。
第12周作業
1 通過ansible roles編排實現 httpd 角色的部署 2 簡述 mysql 資料庫訪問的執行過程。1 驗證訪問使用者名稱和密碼 2 驗證賬號的許可權 3 對sql語句進行分析 4 對sql語句進行優化 5 呼叫儲存引擎的api進行訪問 3 s e l e c t 語句的完整語法較複雜,...
第12周作業
1 通過ansible roles編排實現 httpd 角色的部署 建立相關角色目錄 建立相關角色檔案 main.yml 是task的入口檔案 在files目錄下準備兩個檔案 在playbook中呼叫角色 執行playbook 2 簡述 mysql 資料庫訪問的執行過程。連線層 sql層 儲存引擎層...
第12周作業
1 通過ansible roles編排實現 httpd 角色的部署 準備 編寫主機清單,ssh連線測試,ssh通過金鑰登入 read p 請輸入ssh連線的網段 如 10.0.0 net read p 請輸入連線的ip位址開始數 sta read p 請輸入連線的ip位址截止數 end read p...