- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 main 函数,它接收一个文件并将文件中的数字添加到矩阵中。我一切正常,它打印出正确的答案,但在 valgrind 中我遇到了泄漏,我肯定知道它,因为我没有在循环中释放 MatC: else if (numOfMatrices > 2)。前面带有箭头的行是需要释放的行。
主要功能如下:
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "mmult.h"
int main(int argc, char* argv[]){
(void) argc;
FILE* fp = fopen(argv[0], "r");
char *firstLine = NULL;
char *ptr;
if (!fp){
fprintf(stderr, "Can't Open File");
return EXIT_FAILURE;
} else{ // Gets the number of matrices
char *buf = NULL;
size_t len = 100;
while (getline(&buf, &len, stdin)){
char *pch;
pch = strtok(buf, " \n");
firstLine = buf;
(void) pch;
break;
}
}
int numOfMatrices = strtod(firstLine, &ptr);
free(firstLine);
// Gets the number of rows and columns of the matrix
for (int m = 0; m < numOfMatrices; m++){
int x, y, i, j;
Matrices MatA;
Matrices MatB;
Matrices MatC;
Matrices MatD;
if (numOfMatrices == 1){
MatA.Matrix = mread(stdin, &x, &y);
MatA.row = x;
MatA.col = y;
printf("%d %d\n", MatA.row, MatA.col);
mwrite(stdout, MatA.row, MatA.col, MatA.Matrix);
xfree(MatA.row, MatA.col, MatA.Matrix);
} else if (numOfMatrices >= 2){
if (numOfMatrices == 2){
if (m == 0){
MatA.Matrix = mread(stdin, &x, &y);
MatA.row = x;
MatA.col = y;
MatB.Matrix = mread(stdin, &i, &j);
MatB.row = i;
MatB.col = j;
MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix);
MatC.row = MatA.row;
MatC.col = MatB.col;
xfree(MatA.row, MatA.col, MatA.Matrix);
xfree(MatB.row, MatB.col, MatB.Matrix);
printf("%d %d\n", MatC.row, MatC.col);
mwrite(stdout, MatC.row, MatC.col, MatC.Matrix);
xfree(MatC.row, MatC.col, MatC.Matrix);
}
} else if (numOfMatrices > 2){
if (m == 0){
MatA.Matrix = mread(stdin, &x, &y);
MatA.row = x;
MatA.col = y;
MatB.Matrix = mread(stdin, &i, &j);
MatB.row = i;
MatB.col = j;
-> MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix);
MatC.row = MatA.row;
MatC.col = MatB.col;
xfree(MatA.row, MatA.col, MatA.Matrix);
xfree(MatB.row, MatB.col, MatB.Matrix);
for (int x = 2; x < numOfMatrices; x++){
MatD.Matrix = mread(stdin, &i, &j);
MatD.row = i;
MatD.col = j;
-> MatC.Matrix = mmult(MatC.row, MatC.col, MatC.Matrix, MatD.row, MatD.col, MatD.Matrix);
xfree(MatD.row, MatD.col, MatD.Matrix);
if (x == (numOfMatrices-1)){
printf("%d %d\n", MatC.row, MatC.col);
mwrite(stdout, MatC.row, MatC.col, MatC.Matrix);
xfree(MatC.row, MatC.col, MatC.Matrix);
}
}
}
}
}
}
fclose(fp);
}
此外,这是我的 xfree 函数,free 是一个矩阵:
// Free all memory allocated for A
void xfree(int r, int c, double **A){
(void) c;
for (int y = 0; y < r; y++){
free(A[y]);
}
free(A);
}
我还为矩阵创建了一个结构:
typedef struct Matrices{
double **Matrix; // The matrix held in this node
int row; // Number of rows in the Matrix
int col; // Number of Columns in the Matrix
} Matrices;
Valgrind 输出:
ShaolinGOD@comp:~/Desktop/Project2$ valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes ./mmult < OneMatrix.txt
==7984== Memcheck, a memory error detector
==7984== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==7984== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
==7984== Command: ./mmult
==7984==
2 2
52.00 52.00
80.00 80.00
==7984==
==7984== HEAP SUMMARY:
==7984== in use at exit: 144 bytes in 9 blocks
==7984== total heap usage: 30 allocs, 21 frees, 133,624 bytes allocated
==7984==
==7984== 32 bytes in 2 blocks are indirectly lost in loss record 1 of 4
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==7984== by 0x400D11: xalloc (mmult.c:83)
==7984== by 0x400BF7: mmult (mmult.c:65)
==7984== by 0x401111: main (mmult-driver.c:86)
==7984==
==7984== 48 (16 direct, 32 indirect) bytes in 1 blocks are definitely lost in loss record 2 of 4
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==7984== by 0x400CDE: xalloc (mmult.c:81)
==7984== by 0x400BF7: mmult (mmult.c:65)
==7984== by 0x401111: main (mmult-driver.c:86)
==7984==
==7984== 64 bytes in 4 blocks are indirectly lost in loss record 3 of 4
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==7984== by 0x400D11: xalloc (mmult.c:83)
==7984== by 0x400BF7: mmult (mmult.c:65)
==7984== by 0x4011A4: main (mmult-driver.c:98)
==7984==
==7984== 96 (32 direct, 64 indirect) bytes in 2 blocks are definitely lost in loss record 4 of 4
==7984== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==7984== by 0x400CDE: xalloc (mmult.c:81)
==7984== by 0x400BF7: mmult (mmult.c:65)
==7984== by 0x4011A4: main (mmult-driver.c:98)
==7984==
==7984== LEAK SUMMARY:
==7984== definitely lost: 48 bytes in 3 blocks
==7984== indirectly lost: 96 bytes in 6 blocks
==7984== possibly lost: 0 bytes in 0 blocks
==7984== still reachable: 0 bytes in 0 blocks
==7984== suppressed: 0 bytes in 0 blocks
==7984==
==7984== For counts of detected and suppressed errors, rerun with: -v
==7984== ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
ShaolinGOD@comp:~/Desktop/Project2$
最佳答案
xfree
功能没问题。问题是 xfree
并未针对 MatC.Matrix
您似乎正在尝试转换MatC.Matrix
。为此,您可以分配一个临时矩阵,将旧矩阵复制到临时矩阵,释放旧矩阵,然后将旧矩阵指针设置为临时矩阵。
例如,更改以下部分:
MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix);
MatC.row = MatA.row;
MatC.col = MatB.col;
xfree(MatA.row, MatA.col, MatA.Matrix);
xfree(MatB.row, MatB.col, MatB.Matrix);
for (int x = 2; x < numOfMatrices; x++)
{
MatD.Matrix = mread(stdin, &i, &j);
MatD.row = i;
MatD.col = j;
MatC.Matrix = mmult(MatC.row, MatC.col, MatC.Matrix, MatD.row, MatD.col, MatD.Matrix);
xfree(MatD.row, MatD.col, MatD.Matrix);
if (x == (numOfMatrices - 1))
{
printf("%d %d\n", MatC.row, MatC.col);
mwrite(stdout, MatC.row, MatC.col, MatC.Matrix);
xfree(MatC.row, MatC.col, MatC.Matrix);
}
}
对此:
MatC.Matrix = mmult(MatA.row, MatA.col, MatA.Matrix, MatB.row, MatB.col, MatB.Matrix);
MatC.row = MatA.row;
MatC.col = MatB.col;
xfree(MatA.row, MatA.col, MatA.Matrix);
xfree(MatB.row, MatB.col, MatB.Matrix);
for (int x = 2; x < numOfMatrices; x++)
{
MatD.Matrix = mread(stdin, &i, &j);
MatD.row = i;
MatD.col = j;
Matrices temp;
temp.Matrix = mmult(MatC.row, MatC.col, MatC.Matrix, MatD.row, MatD.col, MatD.Matrix);
xfree(MatD.row, MatD.col, MatD.Matrix);
//free MatC.Matrix
xfree(MatC.row, MatC.col, MatC.Matrix);
//copy pointers from temp to MatC.Matrix
MatC.Matrix = temp.Matrix;
for (int k = 0; k < temp.row; k++)
MatC.Matrix[k] = temp.Matrix[k];
MatC.row = temp.row;//<== added (EDIT ***********)
MatC.col = temp.col;//<== added (EDIT ***********)
if (x == (numOfMatrices - 1))
{
printf("%d %d\n", MatC.row, MatC.col);
mwrite(stdout, MatC.row, MatC.col, MatC.Matrix);
}
}
//add xfree here:
xfree(MatC.row, MatC.col, MatC.Matrix);
现在分配数量和 xfree
应该匹配。
关于c - 我如何释放一个结构?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40275274/
我有一个附加了 View Controller 的 AVAudioPlayer 实例。 @property (nonatomic, retain) AVAudioPlayer *previewAudi
我是java初学者。假设我声明了一个 Account 类型的变量 Account _account = new Account("Thomas"); 然后在其他地方我做了这样的事情: _account
我在我的应用程序中使用了 3 个 UIViewController,现在我想知道当我从另一个应用程序切换到另一个 UIViewController 时释放它们是否是一个好主意。显然,这将是隐藏的,当它
我分配了一个直接缓冲区: ByteBuffer directBuffer = ByteBuffer.allocateDirect(1024); 我读过: Deallocating Direct Buf
场景。我有一个图表,我可以使用右键单击来执行平移。这非常有效。然后我完美地添加了右键菜单。 问题。现在,即使在拖动操作完成后释放鼠标,也会显示右键菜单。 有没有办法在 Java Swing 或 Jav
我使用此代码获取 ABPerson 的姓氏 CFStringRef lastNameRef = ABRecordCopyValue((ABRecordRef)personRecordRef, kABP
目前,我们在基于 C 的嵌入式应用程序中使用 malloc/free Linux 命令进行内存分配/取消分配。我听说这会导致内存碎片,因为内存分配/取消分配会导致堆大小增加/减少,从而导致性能下降。其
当我尝试释放缓冲区时遇到问题。每次我尝试将缓冲区传递给释放方法时,都会发生段错误。 Valgrind 确认段错误位于 BufferDeallocate 方法中。 ==30960== Memcheck,
我想知道何时按下或释放修改后的键(Ctrl 或 Shift)。 基本上,用户可以在按下修改键的情况下执行多次击键,而我不想在它被释放之前执行一个操作(想想 Emacs 和 Ctrl + X + S).
我编写了一个相当大的网络应用程序。它运行良好一段时间,然后慢慢开始运行缓慢,因为 DOM 节点开始爬升到 80,000 - 100,000 左右。 所以我一直在 Chrome 开发工具控制台 (DCT
我知道在像 c 这样的语言中,我需要在分配内存后释放它。 (我来自 Java),对此我有几个问题: 当我在做的时候: int array[30]; (即创建一个大小为 30 个整数的数组)与
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How to release pointer from boost::shared_ptr? Detach
我有一个可以从多个后台线程访问的类,可能同时访问。我无法复制该类,因为重新创建它的内容(处理或内存方面)可能很昂贵。 也有可能在后台处理仍在继续并访问该属性时替换了此类的属性。 目前我有定期的保留/释
这个问题是对: 的扩展链接-1:Creating an image out of the ios surface and saving it Link-2:Taking Screenshots fro
我有一个实例变量 NSMutableArray* searchResults。 首先,我初始化它: self.searchResults = [[NSMutableArray alloc] init]
如果我在堆上声明一些东西,比如 char *a=new char[1000] 并且主程序停止,如果没有 delete[]<,那么分配的内存会发生什么 调用?它保留在堆上还是自动释放? 最佳答案 就C+
在开发相机应用时,我遇到了一个异常,该异常仅在我切换到其他应用时发生(onPause() 用于我的应用)。 01-15 17:22:15.017: E/AndroidRuntime(14336): F
使用 JDK 1.8 编译时出现 maven 编译器错误 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (de
将 BufferedImage 保存到磁盘(以释放内存)的最快方法是什么? 我的 Java 应用程序处理大量图像(每约 300 毫秒将图像加载到内存中)。大多数这些图像都会立即被丢弃 (gc),但每隔
使用 JDK 1.8 编译时出现 maven 编译器错误 未能在项目 DUMMY 上执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:
我是一名优秀的程序员,十分优秀!