Trie

程序修改自 http://zh.wikipedia.org/wiki/Trie

1. #include <iostream> #include <string> #include <vector> using namespace std; extern vector<string> tokenize(const string& src, string tok, bool trim = false, string null_subst = ""); const int TREE_WIDTH = 256; const int WORDLENMAX = 128; class TrieNode { public: int count; TrieNode *next[TREE_WIDTH]; TrieNode(int cnt = 0) : count(cnt) { for (int i = 0; i < TREE_WIDTH; i++) { next[i] = NULL; } } }; class Trie { public: Trie() { root = new TrieNode(); } int insert(const char* word); void travel() { travel(root); } private: void travel(TrieNode *p); TrieNode* root; }; const char *spaces = " /r/n/./"/'(),"; int Trie::insert(const char *word) { int i; TrieNode *curr, *newnode; if (word[0] == '/0') { return 0; } curr = root; for (i = 0;; ++i) { if (curr->next[ word[i] ] == NULL) { newnode = new TrieNode(); curr->next[ word[i] ] = newnode; } if (word[i] == '/0') { break; } curr = curr->next[ word[i] ]; } curr->count++; return 0; } static void printword(const char *str, int n) { cout << str << "/t"<< n << endl; } void Trie::travel(TrieNode *p) { static char worddump[WORDLENMAX+1]; static int pos=0; int i; if (p == NULL) { return; } if (p->count) { worddump[pos]='/0'; printword(worddump, p->count); } for (i=0; i<TREE_WIDTH; ++i) { worddump[pos++]=i; travel(p->next[i]); pos--; } return; } int main(void) { Trie trie; cout << "please input a text paragraph :"<< endl; string text; // no need to use cin >> noskipws here getline(cin, text); vector<string> v = tokenize(text, spaces, true); for (unsigned int i = 0; i < v.size(); i++) { trie.insert(v[i].c_str()); } cout << "sorting the words with occurring times "<< endl; trie.travel(); return 0; }

2. 字符串分词的代码 From: http://www.diybl.com/course/3_program/c++/cppsl/2008831/139194.html

#include <vector> #include <string> #include <iostream> #include <algorithm> using namespace std; typedef basic_string<char>::size_type S_T; static const S_T npos = -1; ////trim指示是否保留空串,默认为保留。tok可以为任意多个字符 vector<string> tokenize(const string& src, string tok, bool trim = false, string null_subst = "") { if (src.empty() || tok.empty() ) throw "tokenize: empty string/0"; vector<string> v; S_T pre_index = 0, index = 0, len = 0; while ( (index = src.find_first_of(tok, pre_index)) != string::npos ) { if ( (len = index - pre_index) != 0) { v.push_back(src.substr(pre_index, len)); } else if (trim == false) { v.push_back(null_subst); } pre_index = index + 1; } string endstr = src.substr(pre_index); if (trim == false) { v.push_back(endstr.empty() ? null_subst : endstr ); } else if ( !endstr.empty() ) { v.push_back(endstr); } return v; } //delimit为一个字符,严格分割 vector<string> split(const string& src, string delimit, string null_subst="") { if (src.empty() || delimit.empty() ) throw "split:empty string/0"; vector<string> v; S_T deli_len = delimit.size(); long index = npos, last_search_position = 0; while ( (index = src.find(delimit, last_search_position)) != npos ) { if (index == last_search_position) v.push_back(null_subst); else v.push_back(src.substr(last_search_position, index - last_search_position) ); last_search_position = index + deli_len; } string last_one = src.substr(last_search_position); v.push_back(last_one.empty() ? null_subst : last_one); return v; } //int main(int argc, char* argv[]) { // string src = ",ab,cde;,,fg,,"; // string tok = ",;"; // vector<string> v1 = tokenize(src, tok , true); // vector<string> v2 = tokenize(src, tok , false, "<null>"); // cout<<"-------------v1:"<<endl; // for (int i=0; i<v1.size(); i++) { // cout<<v1[i].c_str()<<endl; // } // cout<<"-------------v2:"<<endl; // for (int j=0; j<v2.size(); j++) { // cout<<v2[j].c_str()<<endl; // } // try { // // string s = "1;2;3;4"; // string del = ";";//"###"; // vector<string> v3 = split(s, del, "<null>"); // cout<<"-------------v3:"<<endl; // for(int k=0; k<v3.size();k++) // { // cout<<v3[k].c_str()<<endl; // } // } // catch (char *s) { // cout<<s<<endl; // } // return 0; //}

3. 测试结果如下:

please input a text paragraph : In computer science, a trie, or prefix tree, is an ordered tree data structure that is used to store an associative array where the keys are usually strings. Unlike a binary search tree, no node in the tree stores the key associated with that node; instead, its position in the tree shows what key it is associated with. All the descendants of a node have a common prefix of the string associated with that node, and the root is associated with the empty string. Values are normally not associated with every node, only with leaves and some inner nodes that correspond to keys of interest. sorting the words with occurring times All 1 In 1 Unlike 1 Values 1 a 4 an 2 and 2 are 2 array 1 associated 5 associative 1 binary 1 common 1 computer 1 correspond 1 data 1 descendants 1 empty 1 every 1 have 1 in 2 inner 1 instead 1 interest 1 is 4 it 1 its 1 key 2 keys 2 leaves 1 no 1 node 4 node; 1 nodes 1 normally 1 not 1 of 3 only 1 or 1 ordered 1 position 1 prefix 2 root 1 science 1 search 1 shows 1 some 1 store 1 stores 1 string 2 strings 1 structure 1 that 4 the 8 to 2 tree 5 trie 1 used 1 usually 1 what 1 where 1 with 6

六自由度机械臂ANN人工神经网络设计:正向逆向运动学求解、正向动力学控制、拉格朗日-欧拉法推导逆向动力学方程(Matlab代码实现)内容概要:本文档围绕六自由度机械臂的ANN人工神经网络设计展开,详细介绍了正向与逆向运动学求解、正向动力学控制以及基于拉格朗日-欧拉法推导逆向动力学方程的理论与Matlab代码实现过程。文档还涵盖了PINN物理信息神经网络在微分方程求解、主动噪声控制、天线分析、电动汽车调度、储能优化等多个工程与科研领域的应用案例,并提供了丰富的Matlab/Simulink仿真资源和技术支持方向,体现了其在多学科交叉仿真与优化中的综合性价值。; 适合人群:具备一定Matlab编程基础,从事机器人控制、自动化、智能制造、电力系统或相关工程领域研究的科研人员、研究生及工程师。; 使用场景及目标:①掌握六自由度机械臂的运动学与动力学建模方法;②学习人工神经网络在复杂非线性系统控制中的应用;③借助Matlab实现动力学方程推导与仿真验证;④拓展至路径规划、优化调度、信号处理等相关课题的研究与复现。; 阅读建议:建议按目录顺序系统学习,重点关注机械臂建模与神经网络控制部分的代码实现,结合提供的网盘资源进行实践操作,并参考文中列举的优化算法与仿真方法拓展自身研究思路。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值