我的學習記錄36

2021-08-10 20:27:11 字數 1127 閱讀 8850

2017.11.15李錦浩【第36天】

今天完成了前天未完成的程式,由於時間原因沒能挑食完成,可能還存在著一部分編譯問題,需要進一步找尋bug。另外今天學習了關於類的定義和知識。

附:職工統計表:

#pragma

once

#include

using

namespace std;

struct

node ;

void createlist(node*&head)

}p->next = null;

delete s;

delete p;

}void showlist(node*head)

cout << endl;

}void insert(node*head)

head->next = s;

delete s;

}void statustics(node*head)

cout <<

"男員工人數為

"<< man << endl <<

"女員工人數為

"<< woman<}void deleteid(node*head)

s = head;

head = head->next;

}head = head->next;

}void deletex(node*head,node*p)

}if (head->*** == 2)}}

}void showlistx(node*p)

cout << endl;

#include

#include"錄入

.h"

using

namespace std;

int main()

{node*head=null, *p=null;

createlist(head);

showlist(head);

insert(head);

deleteid(head);

deletex(head, p);

showlistx(p);

system("pause");

return 0;

明日任務:繼續編寫關於集合的程式,學習類的知識。

3 6 學習記錄

xmlhttprequest 是 ajax 的基礎。所有現代瀏覽器均支援 xmlhttprequest 物件 ie5 和 ie6 使用 activexobject 所有現代瀏覽器 ie7 firefox chrome safari 以及 opera 均內建 xmlhttprequest 物件。建立 ...

我學習,我記錄 linq where

需求 乙個集合中篩選出符合條件的。思路是定義乙個,迴圈集合中變數,判斷是否符合條件,新增到新的集合 var list1 new list foreach int i in list 帥選集合中元素小於222的 var list2 new list foreach int x in list view...

我的學習記錄7

2017.10.17 李錦浩 第07天 1 今天完成了昨天未完成的程式,並且除錯成功,目前 沒有發現有什麼問題,但對於程式的高效簡潔性來說我覺得我做的還是不夠,還需要繼續努力。2 今天還自學了函式的呼叫和自定義,對於函式中的返回值及函式的部分呼叫機制理解並能夠運用。附 昨天的程式完成版 includ...