課程內容:
課程Github:
https://github.com/QQBoxy/2016vc
Example 1 - Eception
https://github.com/QQBoxy/2016vc/tree/master/exception
Example 2 - Simple Factory Pattern 工廠模式
https://github.com/QQBoxy/2015vc/blob/master/simpleFactoryPattern/main.cpp
FYI:C++、C#
Example 3 - Straegy Patternt 策略模式
https://github.com/QQBoxy/2015vc/blob/master/strategyPattern/main.cpp
FYI:C++、C#
Example 4 - Default Adapter 適配器
https://github.com/QQBoxy/2015vc/blob/master/defaultAdapter/main.cpp
FYI:C++
作業:
請使用工廠模式撰寫,
將上次課程的作業改寫。
2016年7月20日 星期三
2016年7月18日 星期一
Advanced VC++ Chapter 3
課程內容:
課程Github:
https://github.com/QQBoxy/2016vc
Example 1 - Binary file
https://github.com/QQBoxy/2016vc/tree/master/fstream_bin
VC++ seekp & seekg
Example 2 - Class Object
https://github.com/QQBoxy/2016vc/tree/master/classobject
XYZ三維座標系中,點A、點B、點C,連成一個三角形面,上面有一個法向量N
Example 3 - Class Inherit
https://github.com/QQBoxy/2016vc/tree/master/inherit
Example 4 - Vector
https://github.com/QQBoxy/2016vc/tree/master/vector
Vector功能:
Example 5 - Eception
https://github.com/QQBoxy/2016vc/tree/master/exception
作業:
撰寫一隻三角網格STL檔案的轉檔工具,
具備以下功能:
1. 能夠拖拉檔案後,顯示兩個功能選項供選擇。
2. 功能選項1: ASCII格式檔案 轉為 Binary格式檔案。
3. 功能選項2: Binary格式檔案 轉為 ASCII格式檔案。
4. 請使用Class搭配Vector撰寫。
5. 讀取出現意外錯誤時,請顯示問題原因。
測試資料:
四角錐 2x2x2 (TriangleASCII.STL)
立方體 2x2x2 (CubeASCII.STL)
測試檔案:
球 (FileName: SphereASCII.STL, Facet Normal: 2352, Vertex: 7056, Diameter: 1mm)
https://sites.google.com/site/ccuboxy/home/SphereASCII.STL?attredirects=0&d=1
小齒輪 (FileName: GearASCII.STL, Facet Normal: 792, Vertex: 2376, Diameter: 10mm)
https://sites.google.com/site/ccuboxy/home/GearASCII.STL?attredirects=0&d=1
大齒輪 (FileName: LargeGearASCII.STL, Facet Normal: 792, Vertex: 2376, Diameter: 100mm)
https://sites.google.com/site/ccuboxy/home/LargeGearASCII.STL?attredirects=0&d=1
風扇 (FileName: FanASCII.STL, Facet Normal: 2928, Vertex: 8784, Diameter: 80mm)
https://sites.google.com/site/ccuboxy/home/FanASCII.STL?attredirects=0&d=1
課程Github:
https://github.com/QQBoxy/2016vc
Example 1 - Binary file
https://github.com/QQBoxy/2016vc/tree/master/fstream_bin
VC++ seekp & seekg
ios::beg | 文件開頭 |
ios::cur | 文件當前位置 |
ios::end | 文件結尾 |
Example 2 - Class Object
https://github.com/QQBoxy/2016vc/tree/master/classobject
XYZ三維座標系中,點A、點B、點C,連成一個三角形面,上面有一個法向量N
Example 3 - Class Inherit
https://github.com/QQBoxy/2016vc/tree/master/inherit
Example 4 - Vector
https://github.com/QQBoxy/2016vc/tree/master/vector
Vector功能:
檢查是否為空 | v.empty(); |
直接將v清空 | v.clear(); |
檢查目前大小 | v.size(); |
檢查最大容量 | v.maxsize(); |
檢查目前容量 | v.captacity(); |
清除所有內容 | v.clear(); |
清除指定元素 | v.erase(v.begin()); v.erase(v.end()-1); |
讀取並刪除最後一元素 | v.pop_back(v.size()-1); |
重新設定大小 | v.resize(5); |
https://github.com/QQBoxy/2016vc/tree/master/exception
作業:
撰寫一隻三角網格STL檔案的轉檔工具,
具備以下功能:
1. 能夠拖拉檔案後,顯示兩個功能選項供選擇。
2. 功能選項1: ASCII格式檔案 轉為 Binary格式檔案。
3. 功能選項2: Binary格式檔案 轉為 ASCII格式檔案。
4. 請使用Class搭配Vector撰寫。
測試資料:
四角錐 2x2x2 (TriangleASCII.STL)
立方體 2x2x2 (CubeASCII.STL)
測試檔案:
球 (FileName: SphereASCII.STL, Facet Normal: 2352, Vertex: 7056, Diameter: 1mm)
https://sites.google.com/site/ccuboxy/home/SphereASCII.STL?attredirects=0&d=1
小齒輪 (FileName: GearASCII.STL, Facet Normal: 792, Vertex: 2376, Diameter: 10mm)
https://sites.google.com/site/ccuboxy/home/GearASCII.STL?attredirects=0&d=1
大齒輪 (FileName: LargeGearASCII.STL, Facet Normal: 792, Vertex: 2376, Diameter: 100mm)
https://sites.google.com/site/ccuboxy/home/LargeGearASCII.STL?attredirects=0&d=1
風扇 (FileName: FanASCII.STL, Facet Normal: 2928, Vertex: 8784, Diameter: 80mm)
https://sites.google.com/site/ccuboxy/home/FanASCII.STL?attredirects=0&d=1
2016年7月13日 星期三
Advanced VC++ Chapter 2
課程內容:
課程Github:
https://github.com/QQBoxy/2016vc
Example 1 Fstream & Switch case:
https://github.com/QQBoxy/2016vc/tree/master/fstream
VC++ Fstream
Example 2 - Argc Argv
https://github.com/QQBoxy/2016vc/tree/master/argcargv
Example 3 - Regular Expression
https://github.com/QQBoxy/2016vc/tree/master/regex
正規表示法參考指令列表:
Example 4 - String convert
https://github.com/QQBoxy/2016vc/tree/master/stringconvert
作業:
Matlab矩陣相乘
輸入的Matlab矩陣格式文字檔,範例內容如下:
課程Github:
https://github.com/QQBoxy/2016vc
Example 1 Fstream & Switch case:
https://github.com/QQBoxy/2016vc/tree/master/fstream
VC++ Fstream
模式參數 | 用途 |
ios::in | 檔案開啟為讀取(輸入)狀態 |
ios::out | 檔案開啟為寫入(輸出)狀態 |
ios::ate | 從檔案結尾讀取(輸入)及寫入(輸 出)資料 |
ios::app | 從檔案結尾寫入(輸出)資料 |
ios::trunc | 如果檔案存在,就清除檔案 內容的資料 |
ios::nocreat | 若開啟檔案時,檔案不存 在,則產生錯誤 |
ios::noreplace | 若開啟檔案時,檔案存在, 且ate與app為被設定,則產生錯誤 |
ios::binary | 以二進位模式開啟檔案,預 設的檔案模式為文字模式 |
Example 2 - Argc Argv
https://github.com/QQBoxy/2016vc/tree/master/argcargv
Example 3 - Regular Expression
https://github.com/QQBoxy/2016vc/tree/master/regex
正規表示法參考指令列表:
字元 | 描述 |
---|---|
\ | 將下一個字元標記為一個特殊字元、或一個原義字元、或一個向後引用、或一個八進位轉義符。例如,「n」匹配字元「n」。「\n」匹配一個換行符。序列「\\」匹配「\」而「\(」則匹配「(」。 |
^ | 匹配輸入字元串的開始位置。如果設置了RegExp對象的Multiline屬性,^也匹配「\n」或「\r」之後的位置。 |
$ | 匹配輸入字元串的結束位置。如果設置了RegExp對象的Multiline屬性,$也匹配「\n」或「\r」之前的位置。 |
* | 匹配前面的子表達式零次或多次。例如,zo*能匹配「z」以及「zoo」。*等價於{0,}。 |
+ | 匹配前面的子表達式一次或多次。例如,「zo+」能匹配「zo」以及「zoo」,但不能匹配「z」。+等價於{1,}。 |
? | 匹配前面的子表達式零次或一次。例如,「do(es)?」可以匹配「do」或「does」中的「do」。?等價於{0,1}。 |
{n} | n是一個非負整數。匹配確定的n次。例如,「o{2}」不能匹配「Bob」中的「o」,但是能匹配「food」中的兩個o。 |
{n,} | n是一個非負整數。至少匹配n次。例如,「o{2,}」不能匹配「Bob」中的「o」,但能匹配「foooood」中的所有o。「o{1,}」等價於「o+」。「o{0,}」則等價於「o*」。 |
{n,m} | m和n均為非負整數,其中n<=m。最少匹配n次且最多匹配m次。例如,「o{1,3}」將匹配「fooooood」中的前三個o。「o{0,1}」等價於「o?」。請注意在逗號和兩個數之間不能有空格。 |
? | 當該字元緊跟在任何一個其他限制符(*,+,?,{n},{n,},{n,m})後面時,匹配模式是非貪婪的。非貪婪模式儘可能少的匹配所搜索的字元串,而預設的貪婪模式則儘可能多的匹配所搜索的字元串。例如,對於字元串「oooo」,「o+?」將匹配單個「o」,而「o+」將匹配所有「o」。 |
. | 匹配除「\n」之外的任何單個字元。要匹配包括「\n」在內的任何字元,請使用像「[.\n]」的模式。 |
(pattern) | 匹配pattern並獲取這一匹配。所獲取的匹配可以從產生的Matches集合得到,在VBScript中使用SubMatches集合,在JScript中則使用$0…$9屬性。要匹配圓括號字元,請使用「\(」或「\)」。 |
(?:pattern) | 匹配pattern但不獲取匹配結果,也就是說這是一個非獲取匹配,不進行存儲供以後使用。這在使用「或」字元(|)來組合一個模式的各個部分是很有用。例如,「industr(?:y|ies)就是一個比」industry|industries'更簡略的表達式。 |
(?=pattern) | 正向預查,在任何匹配pattern的字元串開始處匹配查找字元串。這是一個非獲取匹配,也就是說,該匹配不需要獲取供以後使用。例如,「Windows(?=95|98|NT|2000)」能匹配「Windows2000」中的「Windows」,但不能匹配「Windows3.1」中的「Windows」。預查不消耗字元,也就是說,在一個匹配發生後,在最後一次匹配之後立即開始下一次匹配的搜索,而不是從包含預查的字元之後開始。 |
(?!pattern) | 負向預查,在任何不匹配pattern的字元串開始處匹配查找字元串。這是一個非獲取匹配,也就是說,該匹配不需要獲取供以後使用。例如「Windows(?!95|98|NT|2000)」能匹配「Windows3.1」中的「Windows」,但不能匹配「Windows2000」中的「Windows」。預查不消耗字元,也就是說,在一個匹配發生後,在最後一次匹配之後立即開始下一次匹配的搜索,而不是從包含預查的字元之後開始 |
x|y | 匹配x或y。例如,「z|food」能匹配「z」或「food」。「(z|f)ood」則匹配「zood」或「food」。 |
[xyz] | 字符集合。匹配所包含的任意一個字元。例如,「[abc]」可以匹配「plain」中的「a」。 |
[^xyz] | 負值字符集合。匹配未包含的任意字元。例如,「[^abc]」可以匹配「plain」中的「p」。 |
[a-z] | 字元範圍。匹配指定範圍內的任意字元。例如,「[a-z]」可以匹配「a」到「z」範圍內的任意小寫字母字元。 |
[^a-z] | 負值字元範圍。匹配任何不在指定範圍內的任意字元。例如,「[^a-z]」可以匹配任何不在「a」到「z」範圍內的任意字元。 |
Example 4 - String convert
https://github.com/QQBoxy/2016vc/tree/master/stringconvert
作業:
Matlab矩陣相乘
- 讀取Matlab矩陣格式的文字檔
- 取得矩陣的值轉換成數字
- 將N個矩陣相乘
- 輸出Matlab矩陣格式的文字檔
輸入的Matlab矩陣格式文字檔,範例內容如下:
[1 1; 2 2 ; 3 3] [4 4 4 ;5 5 5] [6 6 6 6;7 7 7 7;8 8 8 8 ]
2016年7月6日 星期三
Advanced VC++ Chapter 1
課程內容:
VC++ 2013 建立基本專案影片教學:
今年的課程Github:
https://github.com/QQBoxy/2016vc
去年的課程Github:
https://github.com/QQBoxy/2015vc
網頁C++編譯器:
http://cpp.sh/
回憶一下VB:
https://github.com/QQBoxy/2016vc/tree/master/hello_vb
執行結果:
Example 1 Hello:
https://github.com/QQBoxy/2016vc/tree/master/hello2016
Example 2 Datatype:
https://github.com/QQBoxy/2016vc/tree/master/datatype
陣列在記憶體中的排列方式:
int arr[2][4] = {
{ 1, 2, 3, 4 }, { 5, 6, 7, 8 }
};
Example 3 If Statement:
https://github.com/QQBoxy/2016vc/tree/master/ifstatement
ASCII Code Table:
http://www.ascii-code.com/
跳脫字元:
FYI:http://openhome.cc/Gossip/CppGossip/LiteralConstant.html
Example 4 For Statement:
https://github.com/QQBoxy/2016vc/tree/master/forstatement
作業:
這裡有一份單字表(來源:這裡):
https://github.com/QQBoxy/2016vc/blob/master/english_words.txt
試著做一個查單字的程式。
1. 自己去查查cin怎麼用。
2. 提供大朋友輸入單字的前幾個字母,查詢符合前幾個字母的所有單字。
作業請使用FTP上傳到:
主機:140.123.121.40
使用者名稱:vc2016
密碼:(上課會給)
VC++ 2013 建立基本專案影片教學:
今年的課程Github:
https://github.com/QQBoxy/2016vc
去年的課程Github:
https://github.com/QQBoxy/2015vc
網頁C++編譯器:
http://cpp.sh/
回憶一下VB:
https://github.com/QQBoxy/2016vc/tree/master/hello_vb
執行結果:
Example 1 Hello:
https://github.com/QQBoxy/2016vc/tree/master/hello2016
Example 2 Datatype:
https://github.com/QQBoxy/2016vc/tree/master/datatype
陣列在記憶體中的排列方式:
int arr[2][4] = {
{ 1, 2, 3, 4 }, { 5, 6, 7, 8 }
};
陣列 | ... | arr[0][0] | arr[0][1] | arr[0][2] | arr[0][3] | arr[1][0] | arr[1][1] | arr[1][2] | arr[1][3] | ... |
資料 | ... | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | ... |
Example 3 If Statement:
https://github.com/QQBoxy/2016vc/tree/master/ifstatement
ASCII Code Table:
http://www.ascii-code.com/
跳脫字元:
escape sequence | 說明 |
\n | 換行、新行(newline) |
\t | 水平定位點(horizontal tab) |
\v | 垂直定位點(vertical tab) |
\b | 退回一格(backspace) |
\r | 返回(carriage return) |
\f | 換頁(formfeed) |
\a | 嗶聲(alert bell) |
\\ | 倒斜線(backslash) |
\? | 問號 |
\' | 單引號 |
\" | 雙引號 |
Example 4 For Statement:
https://github.com/QQBoxy/2016vc/tree/master/forstatement
作業:
這裡有一份單字表(來源:這裡):
https://github.com/QQBoxy/2016vc/blob/master/english_words.txt
試著做一個查單字的程式。
1. 自己去查查cin怎麼用。
2. 提供大朋友輸入單字的前幾個字母,查詢符合前幾個字母的所有單字。
作業請使用FTP上傳到:
主機:140.123.121.40
使用者名稱:vc2016
密碼:(上課會給)
2016年7月5日 星期二
2016 Summer tutorial
課程內容:
- 研究生守則:http://ccuboxy.blogspot.com/2015/04/cadcam.html
- 期刊搜尋
- Google學術搜尋:
https://scholar.google.com
- 如何模糊搜尋Impact Factor:
http://ccuboxy.blogspot.com/2013/10/impact-factor.html
- 查詢期刊論文IF(Impact Factor)值:
http://ccuboxy.blogspot.com/2012/10/if.html
養成整理成清單的好習慣:
Name Topic IF Computer Methods and Programs in Biomedicine biomedical informatics 1.555(2012) BMC Bioinformatics Systems Biology and Bioinformatics 3.024(2012) Data & Knowledge Engineering Data & Knowledge Engineering (DKE) 1.489(2013) Information Technology in Biomedicine, IEEE Transactions on Biomedicine publishes basic and applied papers of information technology applications 2.072(2013) Journal of Medical Internet Research The leading peer-reviewed journal for health and healthcare in the Internet age. 4.669(2013)
- Google學術搜尋:
- 專利搜尋
- 中華民國專利資訊檢索系統:
http://twpat.tipo.gov.tw/
- Google專利搜尋:
https://www.google.com.tw/?tbm=pts
- 美國專利全文資料庫:
http://patft.uspto.gov/
- J-Platpat(原IPDL專利檢索):
https://www.j-platpat.inpit.go.jp/
- 中華民國專利資訊檢索系統:
訂閱:
文章 (Atom)