c++ 分段故障(内核转储)但无法确定

oug3syen  于 2022-11-27  发布在  其他
关注(0)|答案(1)|浏览(270)

根据我的理解,segfault通常是由无效的内存访问或泄漏引起的?但我不知道它在哪里。有没有像程序一样的方法来检查你的代码并找出它在哪里引起这个错误?请帮助。
我正在尝试用诸如insert find和predict completions这样的函数构建一个三元trie。
这是我的头文件:

  1. #include <vector>
  2. #include <string>
  3. #include <list>
  4. #include <iostream>
  5. using namespace std;
  6. class TNode {
  7. public:
  8. TNode* left;
  9. TNode* right;
  10. TNode* middle;
  11. TNode* parent;
  12. int freq;
  13. char symbol;
  14. bool isWord;
  15. TNode(const char c, bool b, const unsigned int f);
  16. };
  17. class DictionaryTrie {
  18. public:
  19. DictionaryTrie();
  20. bool insert(std::string word, unsigned int freq);
  21. bool find(std::string word) const;
  22. std::vector<std::string> predictCompletions(std::string prefix, unsigned int numcompletions);
  23. ~DictionaryTrie();
  24. private:
  25. TNode* root;
  26. void deleteAll(TNode* root) const;
  27. void predictHelper(TNode* n, string s, list<pair<string, unsigned int>> & allWords) const;
  28. };
  29. #endif

这是我的cpp文件

  1. #include "DictionaryTrie.hpp"
  2. #include <list>
  3. #include <string>
  4. #include <vector>
  5. using namespace std;
  6. TNode::TNode(const char c, bool b, const unsigned int f) : symbol(c), isWord(b), freq(f), left(0), middle(0), right(0), parent(0) {}
  7. DictionaryTrie::DictionaryTrie():root(0){}
  8. bool DictionaryTrie::insert(string word, unsigned int freq) {
  9. if (word.empty())
  10. return false;
  11. TNode* curr = root;
  12. if (curr == nullptr) {
  13. if (word.length() == 1)
  14. root = new TNode (word[0], true, freq);
  15. else
  16. root = new TNode(word[0], false, 0);
  17. }
  18. for (unsigned int i = 0; i < word.length();) {
  19. if (curr->symbol == word[i]) {
  20. if (curr->middle != NULL) {
  21. if (i == word.length()-1) {
  22. if(curr->isWord == false) {
  23. curr->isWord = true;
  24. curr->freq = freq;
  25. return true;
  26. }
  27. else
  28. return false;
  29. }
  30. else {
  31. curr = curr->middle;
  32. i++;
  33. continue;
  34. }
  35. }
  36. else if (curr->middle == NULL) {
  37. if(i!=word.length() - 1){
  38. curr->middle = new TNode(word[i+1], (i==word.length()-2),(i==word.length()-2)?freq:0);
  39. curr=curr->middle;
  40. i++;
  41. if (i==word.length()-2) return true;
  42. }
  43. else if (i == word.length() - 1) {
  44. if(curr->isWord == false) {
  45. curr->isWord = true;
  46. curr->freq = freq;
  47. return true;
  48. }
  49. }
  50. else return false;
  51. }
  52. }
  53. else if(word[i] > curr->symbol) {
  54. if (curr->right != NULL) {
  55. curr=curr->right;
  56. continue;
  57. }
  58. else {
  59. curr->right = new TNode(word[i], (i==word.length()-1), (i==word.length()-1)?freq:0);
  60. curr = curr->right;
  61. if (i==word.length()-1)
  62. return true;
  63. }
  64. }
  65. else {
  66. if (curr->left != NULL) {
  67. curr = curr->left;
  68. continue;
  69. }
  70. else {
  71. curr->left = new TNode(word[i], (i==word.length()-1), (i==word.length()-1)?freq:0);
  72. curr = curr->left;
  73. if (i==word.length()-1)
  74. return true;
  75. }
  76. }
  77. }
  78. }
  79. bool DictionaryTrie::find(string word) const {
  80. TNode* curr = root;
  81. if(word.length() == 0)
  82. return false;
  83. for (unsigned int i = 0; i < word.length();) {
  84. if (curr != NULL) {
  85. if(curr->symbol == word[i]) {
  86. i++;
  87. if(i==word.length()) {
  88. if(curr->isWord == true)
  89. return true;
  90. else
  91. return false;
  92. }
  93. curr = curr->middle;
  94. }
  95. else if (word[i] > curr->symbol) {
  96. curr = curr->right;
  97. }
  98. else
  99. curr = curr->right;
  100. }
  101. else return false;
  102. }
  103. }
  104. vector<string> DictionaryTrie::predictCompletions(string prefix, unsigned int numCompletions) {
  105. vector<string> completions;
  106. list<pair<string, unsigned int>> allWords;
  107. if (numCompletions == 0 || prefix == "")
  108. return completions;
  109. TNode* curr = root;
  110. for (unsigned int i = 0; i < prefix.length();) {
  111. if (curr != NULL) {
  112. if (curr->symbol == prefix[i]) {
  113. i++;
  114. if (i==prefix.length())
  115. break;
  116. curr = curr->middle;
  117. }
  118. else if (prefix[i] < curr->symbol)
  119. curr=curr->left;
  120. else
  121. curr=curr->right;
  122. }
  123. //prefix is not in trie
  124. else
  125. return completions;
  126. }
  127. if (curr->isWord)
  128. allWords.push_back(make_pair(prefix, curr->freq));
  129. predictHelper (curr->middle, prefix, allWords);
  130. allWords.sort([](auto const& a, auto const& b) {
  131. if (a.second > b.second)
  132. return true;
  133. if (a.second < b.second)
  134. return false;
  135. return a.first < b.first;
  136. //return tie(b.second, a.first) < tie(a.second, a.first);
  137. });
  138. for(auto const& p: allWords) {
  139. if (completions.size() < numCompletions)
  140. completions.push_back(p.first);
  141. else
  142. break;
  143. }
  144. }
  145. void DictionaryTrie::predictHelper(TNode* n, string s, list<pair<string, unsigned int>> & allWords)const {
  146. if (n==NULL) return;
  147. else {
  148. string temp = s + n->symbol;
  149. //check if node is a valid word
  150. if (n->isWord == true)
  151. allWords.push_back(make_pair(temp, n->freq));
  152. predictHelper(n->middle, temp, allWords);
  153. predictHelper(n->left, temp, allWords);
  154. predictHelper(n->right, temp, allWords);
  155. }
  156. }
  157. DictionaryTrie::~DictionaryTrie() {
  158. deleteAll(root);
  159. }
  160. void DictionaryTrie::deleteAll(TNode* n) const {
  161. if(!n) return;
  162. else {
  163. deleteAll(n->left);
  164. deleteAll(n->middle);
  165. deleteAll(n->right);
  166. delete n;
  167. return;
  168. }
  169. }
jdzmm42g

jdzmm42g1#

当您使用调试器时,应该会看到在if (cur->symbol == word[i])处出现访问冲突。(请在家里尝试一下。)为什么会发生这种情况?
DictionaryTrie::insert中,如果curr(== root)是一个空指针,则分配一个节点并将其存储在root中,但不更新curr。然后进入for循环,并引用curr->symbol。由于curr是一个空指针,因此会出现访问冲突。
简单的解决方法是将

  1. curr = root;

在给root赋值之后。

相关问题