contributed by < ArielWu0203
>
DB_Note
Download : https://robomongo.org/download
$ tar -xvzf robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
$ sudo mkdir /usr/local/bin/robomongo
$ sudo mv robo3t-1.2.1-linux-x86_64-3e50a65/* /usr/local/bin/robomongo
$ cd /usr/local/bin/robomongo/bin/
// 設定權限
$ sudo chmod +x robo3t
$ ./robo3t
// 確認狀態
$ service mongod status
// 若 `Active : inactive(dead)`
$ sudo service mongod start
contributed by < ArielWu0203 > queue.c 實作 [x] q_new: 建立新的「空」佇列; [x] q_free: 釋放佇列所佔用的記憶體; [x] q_insert_head: 在佇列開頭 (head) 插入 (insert) 給定的新節點 (以 LIFO 準則); [x] q_insert_tail: 在佇列尾端 (tail) 插入 (insert) 給定的新節點 (以 FIFO 準則); [x] q_remove_head: 在佇列開頭 (head) 移去 (remove) 給定的節點; [x] q_release_element: 釋放特定節點的記憶體空間;
Feb 22, 2022or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up