摘要:
using System; using System.Collections.Generic; using System.Text; public class ACAutoMachine { protected WordNode m_root; public ACAutoMachine() { m_root = new WordNode(); ... 阅读全文
摘要:
目标: 用c++读取下面lua文件的变量,表,调用函数: 由于还有些表要我配,今天任务延期,没完成,明日再更新 name = "织法" age = 25 color = {r=1.0,g=0.2,b=0.5,a=1.0} arr = {1,2,3,4,5} function Add(a,b) ret 阅读全文