我正在尝试实现合并排序算法。首先,我尝试创建merge方法。我正在使用向量并利用迭代器。但是while函数中的merge正文会导致此错误:


  “ ./a.out”以信号SIGSEGV终止(地址边界错误)


这是代码

#include <iostream>
#include <vector>

std::vector<int> merge(std::vector<int> &, std::vector<int> &);

int main()
{
  std::vector<int> vect {1,3,5,7};
  std::vector<int> vect2 {2,3,6,8};
  std::vector<int> temp_vect = merge(vect, vect2);
  for(int num: temp_vect) {
    std::cout << num  << std::endl;
  }

}

std::vector<int> merge(std::vector<int> & first_vect, std::vector<int> & second_vect)
{
  std::vector<int> sorted_vect;
  auto sorted_it = sorted_vect.begin();
  auto first_it = first_vect.begin(), second_it = second_vect.begin();

  while(first_it != first_vect.end() || second_it != second_vect.end()) {
      if(*first_it < *second_it) {
        sorted_vect.push_back(*first_it);
        first_it++;
      } else if(*first_it > *second_it) {
        sorted_vect.push_back(*second_it);
        second_it++;
      } else {
        sorted_vect.push_back(*first_it);
        sorted_vect.push_back(*second_it);
        first_it++; second_it++;
      }
  }

  if(first_it == first_vect.end()) {
    //end of first_vect reached
    //inserting the rest of second_vect
    sorted_vect.insert(sorted_vect.end() - 1, second_it, second_vect.end());
  } else if (second_it == second_vect.end()) {
    //end of second_vect reached
    //inserting the rest of first_vect
    sorted_vect.insert(sorted_vect.end() - 1, first_it, first_vect.end());
  }

  return sorted_vect;
}

最佳答案

通常,当进程尝试访问未分配给该特定进程的内存时,将引发SIGSEGV。引发SIGSEGV的主要原因是取消引用无效的指针。在您的情况下,当到达该列表的末尾时,您取消引用first_it或second_it以检查其值时会发生这种情况。

您至少需要进行三处更改:

1: line 23- while(first_it != first_vect.end() && second_it != second_vect.end())
2: line 40- sorted_vect.insert(sorted_vect.end(), second_it, second_vect.end());
3: line 44- sorted_vect.insert(sorted_vect.end(), first_it, first_vect.end());


1:您应该检查是否到达列表末尾:应使用and(&&)或(||)。这将消除SIGSEGV错误。

2&3:您应将其余列表的其余部分添加到合并列表的末尾,而不是最后一个元素之前。

可选更改:

1-您不需要sorted_it变量(您没有使用它)

2-您不必检查是否相等,如果值相等,则可以插入其中的任何一个,循环的下一次迭代将发挥作用。

3-您不必检查哪个列表到达末尾,可以合并每个列表的其余部分。

以上所有内容都反映在这里:

std::vector<int> merge(std::vector<int> & first_vect, std::vector<int> & second_vect)
{
      std::vector<int> sorted_vect;
      auto first_it = first_vect.begin(), second_it = second_vect.begin();

      while(first_it != first_vect.end() && second_it != second_vect.end()) {
           if(*first_it < *second_it) {
               sorted_vect.push_back(*first_it);
               first_it++;
           } else {
               sorted_vect.push_back(*second_it);
               second_it++;
           }
      }
      sorted_vect.insert(sorted_vect.end(), first_it, first_vect.end());
      sorted_vect.insert(sorted_vect.end(), second_it, second_vect.end());
      return sorted_vect;
}

关于c++ - 处理迭代器时,被信号SIGSEGV(地址边界错误)终止,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39431422/

10-13 07:05