- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,伙计们,我正在实现一个类矩阵(就像线性代数中的矩阵),当抛出异常时我遇到了一个特殊情况的奇怪问题。当要求用户从控制台输入矩阵数据时 如果 !first!输入是从类中触发异常抛出的东西。我认为这一定是某种奇怪的内存泄漏,我似乎无法追踪。
该类的唯一私有(private)成员是:double** rows
/int width
/int height
。我将只向您展示我的类析构函数、导致问题的输入函数和我的主要函数:
~矩阵()
Matrix::~Matrix()
{
if (rows)
{
for (int k = 0; k < height; k++)
{
delete[] rows[k];
}
delete[] rows;
rows = 0;
}
}
运算符>>重载
std::istream& operator>> (std::istream& in, Matrix &obj)
{
if (obj.rows)
{
for (int i = 0; i < obj.height; i++)
{
delete[] obj.rows[i];
}
delete[] obj.rows;
obj.rows = 0;
obj.width = 0;
obj.height = 0;
}
std::cout << "Input matrix data (enter 'q' to stop and 'n' to start new row):" << std::endl;
std::string input = "";
double data;
obj.height = 1;
obj.rows = new double* [obj.height];
int temp_width = 0; // can overflow for incredibily long rows ;Ds
double* temp_row = 0;
while (true)
{
std::cin >> input;
std::istringstream inputStream(input);
//fill current row
if (inputStream >> data)
{
temp_width++;
if (temp_width > obj.width)
{
obj.width = temp_width;
}
if (temp_width == 1)
{
obj.rows[obj.height - 1] = new double[temp_width];
obj.rows[obj.height - 1][temp_width - 1] = data;
}
else //(temp_width > 1)
{
//store row without the new element
temp_row = new double [temp_width - 1];
for (int j = 0; j < temp_width - 1; j++)
{
temp_row[j] = obj.rows[obj.height - 1][j];
}
//temp_row = obj.rows[obj.height - 1];
delete[] obj.rows[obj.height - 1];
obj.rows[obj.height - 1] = 0; //probably not needed
obj.rows[obj.height - 1] = new double[temp_width];
//copy over the row from previous iteration
for (int k = 0; k < temp_width - 1; k++)
{
obj.rows[obj.height - 1][k] = temp_row[k];
}
//append the new element at the end of current row
obj.rows[obj.height - 1][temp_width - 1] = data;
delete[] temp_row;
temp_row = 0;
}
}
//add new row
else if (input == "n")
{
//prevent creating new row if the current one is empty
if (temp_width == 0)
{
throw InputError("You must enter at least one element per row.");
}
//stuff end of row with zeroes if needed
else if (temp_width < obj.width)
{
temp_row = new double [temp_width];
temp_row = obj.rows[obj.height - 1];
delete[] obj.rows[obj.height - 1];
obj.rows[obj.height - 1] = new double[obj.width];
for (int i = 0; i < obj.width; i++)
{
if (i > temp_width - 1)
obj.rows[obj.height - 1][i] = 0;
else
obj.rows[obj.height - 1][i] = temp_row[i];
}
delete[] temp_row;
temp_row = 0;
}
//backup current matrix AND delete the original
double** temp_matrix = new double* [obj.height];
for (int k = 0; k < obj.height; k++)
{
temp_matrix[k] = new double [obj.width];
for (int j = 0; j < obj.width; j++)
{
temp_matrix[k][j] = obj.rows[k][j];
}
delete[] obj.rows[k];
}
delete[] obj.rows;
obj.rows = 0;
//generate the new bigger matrix, copy backup into it, delete backup
obj.height++;
obj.rows = new double* [obj.height];
for (int s = 0; s < obj.height - 1; s++)
{
obj.rows[s] = new double [obj.width];
for (int v = 0; v < obj.width; v++)
{
obj.rows[s][v] = temp_matrix[s][v];
}
delete[] temp_matrix[s];
}
delete[] temp_matrix;
temp_matrix = 0;
temp_width = 0;
}
//exit input
else if (input == "q")
{
if (obj.width == 0)
{
throw InputError("Input Error. You must enter at least one element into matrix");
}
//stuff with zeroes if needed
if (temp_width < obj.width)
{
temp_row = new double [temp_width];
temp_row = obj.rows[obj.height - 1];
delete[] obj.rows[obj.height - 1];
obj.rows[obj.height - 1] = new double[obj.width];
for (int i = 0; i < obj.width; i++)
{
if (i > temp_width - 1)
obj.rows[obj.height - 1][i] = 0;
else
obj.rows[obj.height - 1][i] = temp_row[i];
}
}
break;
}
//throw input error
else
{
throw InputError("Input Error. Only numbers and the characters 'n' and 'q' are accepted");
}
}
return in;
}
主要()
int main()
{
bool tryAgain = true;
Matrix m1;
while (tryAgain)
{
try
{
cin >> m1;
cout << "Matrix 1: \n" << m1;
}
catch (InputError& e)
{
cout << e.what() << endl;
}
cout << "Enter matrix data again? (y/n) ";
char input;
cin >> input;
if (input == 'n') tryAgain = false;
}
return 0;
}
如果您觉得彻底查看我的运算符>> 函数太麻烦,只需考虑程序会崩溃的最简单 情况。即当用户的第一个输入不是数字或字符“q”和“n”之一时。这是由 operator>> 函数中的最后一个 else 语句处理的。确切的结果是在控制台中您看到抛出的异常,然后 main() 函数的 while 循环继续。当它第二次循环回到 cin >> m1;
语句时,无论输入如何,您只会收到一条消息 - “此应用程序已请求运行时终止它...”。有时你甚至不需要第二次输入任何东西,它在那之前就崩溃了。有任何想法吗?
最佳答案
您遇到的问题取决于您的内存管理选择,我认为这从根本上是不正确的,因为您不是在为矩阵建模,而是为具有整个非连续内存负载的锯齿状结构建模。 (例如,编写转置方法对于您的设计选择来说将是一场噩梦。)
从这里出发的两条路线:
1) 用一 block 内存重新设计你的类;建议(从零开始)元素 (i, j) 保存在 i * rows + j 处,其中 rows 是矩阵中的行数。您可以将 [][] 替换为对 double& operator()(unsigned i, unsigned j)
和 const double& operator()(unsigned i, unsigned j) const 形式的重载运算符的调用
。 (提供了引用,因此您可以使用 (,) 作为左值;例如 myMatrixObject(i, j) = 1.0
)
2) 使用 BLAS 中的矩阵类(可从 www.boost.org 获取)。其中包含稀疏矩阵和单位矩阵等实现。
我更喜欢 (2)。我知道构建自己的矩阵类很有趣,但“不要重新发明轮子”确实让我想到了。
关于c++ - 矩阵实现类 C++ 中的内存管理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17429748/
假设我有两个矩阵,每个矩阵有两列和不同的行数。我想检查并查看一个矩阵的哪些对在另一个矩阵中。如果这些是一维的,我通常只会做 a %in% x得到我的结果。 match似乎只适用于向量。 > a
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 9 个月前。 Improv
我只处理过 DirectX 矩阵 我读过一些文章,说不能将 DirectX 矩阵数学库用于 openGL 矩阵。 但我也读过,如果你的数学是一致的,你可以获得类似的结果。那只会让我更加困惑。 任何人都
我编写了一个C++代码来解决线性系统A.x = b,其中A是一个对称矩阵,方法是首先使用LAPACK(E)对角矩阵A = V.D.V^T(因为以后需要特征值),然后求解x = A^-1.b = V^T
我遇到了问题。我想创建二维数组 rows=3 cols=2我的代码如下 int **ptr; int row=3; int col=2; ptr=new int *[col]; for (int i=
我有一个 3d mxnxt 矩阵,我希望能够提取 t 2d nxm 矩阵。在我的例子中,我有一个 1024x1024x10 矩阵,我想要 10 张图像显示给我。 这不是 reshape ,我每次只需要
我在 MATLAB 中有一个 3d 矩阵 (n-by-m-by-t) 表示一段时间内网格中的 n-by-m 测量值.我想要一个二维矩阵,其中空间信息消失了,只剩下 n*m 随着时间 t 的测量值(即:
作为一个简化的示例,我有一个 3D numpy 矩阵,如下所示: a = np.array([[[1,2], [4,np.nan], [7,
作为一个简化的示例,我有一个 3D numpy 矩阵,如下所示: a = np.array([[[1,2], [4,np.nan], [7,
使用 eigen2 , 并给定一个矩阵 A a_0_0, a_0_1, a_0_2, ... a_1_0, a_1_0, a_1_2, ... ... 和一个矩阵B: b_0_0, b_0_1, b_
我想知道如何获得下面的布局。 在中型和大型设备上,我希望有 2 行和 2 列的布局(2 x 2 矩阵)。 在小型(和超小型)设备上或调整为小型设备时,我想要一个 4 行和 1 列的矩阵。 我将通过 a
有什么方法可以向量化以下内容: for i = 1:6 te = k(:,:,:,i).*(c(i)); end 我正在尝试将 4D 矩阵 k 乘以向量 c,方法是将其
如何从填充有 1 和 0 的矩阵中抽取 n 个随机点的样本? a=rep(0:1,5) b=rep(0,10) c=rep(1,10) dataset=matrix(cbind(a,b,c),nrow
我正在尝试创建一个包含 X 个 X 的矩阵。以下代码生成从左上角到右下角的 X 对 Angular 线,而不是从右上角到左下角的 X 对 Angular 线。我不确定从哪里开始。是否应该使用新变量创建
我想在 python 中创建一个每行三列的矩阵,并能够通过任何一行对它们进行索引。矩阵中的每个值都是唯一的。 据我所知,我可以设置如下矩阵: matrix = [["username", "name"
我有点迷茫 我创建了一个名为 person 的类,它具有 age 和 name 属性(以及 get set 方法)。然后在另一个类中,我想创建一个 persons 数组,其中每个人都有不同的年龄和姓名
我有 n 个类,它们要么堆叠,要么不堆叠。所有这些类都扩展了同一个类 (CellObject)。我知道更多类将添加到此列表中,我想创建一种易于在一个地方操纵“可堆叠性”的方法。 我正在考虑创建一个矩阵
我有一个包含 x 个字符串名称及其关联 ID 的文件。本质上是两列数据。 我想要的是一个格式为 x x x 的相关样式表(将相关数据同时作为 x 轴和 y 轴),但我想要 fuzzywuzzy 库的函
机器学习与传统编程的一个重要区别在于机器学习比传统编程涉及了更多的数学知识。不过,随着机器学习的飞速发展,各种框架应运而生,在数据分析等应用中使用机器学习时,使用现成的库和框架成为常态,似乎越来越不需
当我在 julia 中输入这个错误跳转但我不知道为什么,它应该工作。/ julia> A = [1 2 3 4; 5 6 7 8; 1 2 3 4; 5 6 7 8] 4×4 Array{Int64,
我是一名优秀的程序员,十分优秀!