中文字符与摩尔斯电码的对应表
时间: 2024-01-02 17:08:19 浏览: 224
好的,以下是一个简单的中文字符与摩尔斯电码的对应表:
```c++
map<wchar_t, CString> morseMap;
morseMap[L'阿'] = L".- "; morseMap[L'巴'] = L"-... "; morseMap[L'曹'] = L"-.-. ";
morseMap[L'邓'] = L"-.. "; morseMap[L'恩'] = L". ";
morseMap[L'方'] = L"..-. "; morseMap[L'高'] = L"--. ";
morseMap[L'何'] = L".... "; morseMap[L'伊'] = L".. ";
morseMap[L'江'] = L".--- "; morseMap[L'柯'] = L"-.- "; morseMap[L'李'] = L".-.. ";
morseMap[L'马'] = L"-- "; morseMap[L'牛'] = L"-. ";
morseMap[L'欧'] = L"--- "; morseMap[L'潘'] = L".--. "; morseMap[L'齐'] = L"--.- ";
morseMap[L'任'] = L".-. "; morseMap[L'孙'] = L"... "; morseMap[L'童'] = L"- ";
morseMap[L'王'] = L"..- "; morseMap[L'许'] = L"...- "; morseMap[L'杨'] = L".-- ";
morseMap[L'张'] = L"-..- "; morseMap[L'周'] = L"-..-. ";
```
这只是一个简单的示例,实际使用时可以根据需要进行扩展和修改。
阅读全文