實現發帖部分功能

2022-07-26 16:00:16 字數 2159 閱讀 4142

html**

doctype html

>

<

html

>

<

head

lang

="en"

>

<

meta

charset

="utf-8"

>

<

title

>課工場論壇列表

title

>

<

link

href

="css/bbs.css"

rel="stylesheet"

>

head

>

<

body

>

<

div

class

="bbs"

>

<

header

><

span

>我要發帖

span

>

header

>

<

section

>

<

ul>

ul>

section

>

<

div

class

="post"

>

<

input

class

="title"

placeholder

="請輸入標題(1-50個字元)"

>

所屬版塊:

<

select

><

option

class

="selected"

>請選擇版塊

option

><

option

>電子書籍

option

><

option

>新課來了

option

><

option

>新手報到

option

><

option

>職業規劃

option

>

select

>

<

textarea

class

="content"

>

textarea

>

<

input

type

="button"

class

="btn"

value

="發布"

*ul,li.bbsheaderheader span.post.post .title.post select.post .content.post .btn.bbs section ul li.bbs section ul li div.bbs section ul li div img.bbs section ul li h1.bbs section ul li p.bbs section ul li p span
實現效果

部分函式功能的實現

1 strcpy的實現 其中包含src字串結尾處的 0 實現 include 模擬實現strcpy include void my strcpy char dest,const char src 函式不需要返回 dest 0 拷貝上最後的 0 因為strcpy有將src裡的 0 拷貝到dest裡的功...

容器vector部分功能的實現

這是c primer書中的例題。實現了vector容器的部分功能。具體內容在第四版的18.1節。要考慮到vector的記憶體分配策略。下面分別是用allocator 注釋的部分 和new,delete實現的。1.allocator allocate size t t 分配原始的未構造記憶體以儲存t個...

STL之set部分功能實現

stl 對這個序列可以進行查詢,插入刪除序列中的任意乙個元素,而完成這些操作的時間同這個序列中元素個數的對數成比例關係,並且當 游標指向乙個已刪除的元素時,刪除操作無效。而乙個經過更正的和更加實際的定義應該是 乙個集合 set 是乙個容器,它其中所包含的元素的值是唯一的。這在收集乙個資料的具體值的時...