- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我一直在努力解决链表上的一些内存泄漏问题:(目前已编辑 3 次以上,接近底部)
错误如下:
==348== HEAP SUMMARY:
==348== in use at exit: 32 bytes in 2 blocks
==348== total heap usage: 17 allocs, 15 frees, 272 bytes allocated
==348==
==348== 16 bytes in 1 blocks are definitely lost in loss record 1 of 2
==348== at 0x4C2B1C7: operator new(unsigned long) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==348== by 0x400A2A: RangeSet::RangeSet() (RangeSet.cpp:14)
==348== by 0x4013ED: main (TestRange.cpp:16)
==348==
==348== 16 bytes in 1 blocks are definitely lost in loss record 2 of 2
==348== at 0x4C2B1C7: operator new(unsigned long) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==348== by 0x400F54: RangeSet::Union(RangeSet const&, RangeSet const&) (RangeSet.cpp:167)
==348== by 0x401400: main (TestRange.cpp:17)
我可以从发布的类似问题中看出,释放“下一个”指针很可能是一个问题,但我经历并修复了这些错误(至少我尝试过),现在我只得到这个(^ ) 从运行 valgrind --tool=memcheck --leak-check=yes
相关代码:
RangeSet::RangeSet()
{
// make a dummy node?
RNode* newNode = new RNode();
head = newNode;
head->start = 0;
head->end = 0;
head->next = NULL; // newing this for memory leak??
len=0;
} // end of constructor
// copy constructor for Union
RangeSet::RangeSet(const RangeSet &in)
{
RNode* cur;
RNode* nex;
head = new RNode();
head->start = in.head->start;
head->end = in.head->end;
cur = head;
nex = in.head->next;
while (nex){
cur->next = new RNode();
cur = cur->next;
cur->start = nex->start;
cur->end = nex->end;
nex = nex->next;
}
len = in.len;
} // end of copy constructor
// creates a pointer to new RangeSet that is the union of the two supplied RangeSets
RangeSet* RangeSet::Union(const RangeSet &alpha, const RangeSet &beta)
{
// alpha and beta are const, so create copy
RangeSet* copAlpha = new RangeSet(alpha);
RNode *cursor = beta.head;
// addRange all of beta into alpha's copy
while (cursor != NULL){
copAlpha->addRange(cursor->start, cursor->end);
cursor=cursor->next;
}
return copAlpha;
} // end of Union
问题可能出在我的 RNode 的构造函数上吗?
struct RNode {
int start, end;
RNode* next;
// possibly a pointer back to make it doubly linked
RNode() {
next = NULL;
}
};
编辑对不起!这是我的删除函数(我的析构函数只是调用它):
// makes the set empty
void RangeSet::deleteAllElements()
{
// having memory leak problems stemming from this function
// trying to fix
RNode *nex = head->next;
for (RNode* cursor = head; cursor; cursor=nex){
nex = cursor->next;
RNode *cur = cursor;
delete(cur);
//delete(cursor->next); // Should I do this in a constructor for the RNode
len--;
}
} // end of deleteAllElements
编辑 2使用 addRange 更新并排序(最后由 addRange 调用)。感谢大家一直以来的帮助! (抱歉,addRange 有点冗长且可能令人费解)
// addRange
void RangeSet::addRange(int rangeStart, int rangeEnd)
{
// debug
//cout << "Adding range: " << rangeStart << " to " << rangeEnd << endl;
// li'l bit of error checking
if (rangeStart > rangeEnd){
cerr << "Please enter range(s) in the correct order. Exiting." << endl;
exit(0);
}
// head case
if (len==0){
head->start = rangeStart;
head->end = rangeEnd;
len++;
// need to account for adding at beginning
} else if (rangeStart <= head->start){
//cout << "INSERTING AT BEGINNING" << endl;
RNode *newNode = new RNode();
newNode->start = head->start;
newNode->end = head->end;
newNode->next = head->next;
head->start = rangeStart;
head->end = rangeEnd;
head->next = newNode;
len++;
} else if (head->next == NULL){
RNode *newNode = new RNode();
newNode->start = rangeStart;
newNode->end = rangeEnd;
head->next = newNode;
len++;
} else {
// Moving past any nodes where the start is less than rangeStart
RNode *cursor = head;
RNode *past = cursor;
int count = 1;
while (cursor!=NULL && count<=len){
if (rangeStart > cursor->start){
//cout << rangeStart << " is > than " << cursor->start << endl;
//cout << "DEBUG1(cursor): " << cursor->start << endl;
//cout << "DEBUG2(past): " << past->start << endl;
past = cursor;
cursor = cursor->next;
}
count++;
}
//cout << "INSERTING POS: " << count << endl;
// creating a new node to insert in middle
RNode *newNode = new RNode();
newNode->start = rangeStart;
newNode->end = rangeEnd;
if (count == 1){
// add it after head (no other nodes)
head->next = newNode;
newNode->next = NULL;
} else {
if (cursor){
newNode->next = cursor;
}
past->next = newNode;
}
len++;
}
//dump();
sort();
} // end addRange
所以我要做的是创建新节点并根据其起始值将其添加到列表中,然后调用 sort():
// sort function called by addRange
void RangeSet::sort()
{
//cout << "SORTING" << endl;
RNode *cursor = head;
while (cursor->next != NULL){
RNode *curPlusOne = cursor->next;
if (cursor->end >= (curPlusOne->start -1)){
if (cursor->end < curPlusOne->end){
cursor->end = curPlusOne->end;
}
cursor->next = curPlusOne->next;
//cout << "NODE BEING DELETED: " << curPlusOne->start << " to " << curPlusOne->end << endl;
delete(curPlusOne);
len--;
} else {
cursor=cursor->next;
}
} // end while
//dump();
} // end sort
EDIT 3 发布我的 main 和 deleteRange。这次我也遇到了一组不同的错误,我将把它们贴到底部。再次感谢!
// deletes all integers from RANGESTART to RANGEEND inclusive
void RangeSet::deleteRange(int rangeStart, int rangeEnd)
{
RNode *cursor = head;
RNode *past = cursor;
RNode *temp = cursor->next;
while (cursor){
temp = cursor->next;
if (rangeStart <= cursor->start && rangeEnd >= cursor->end){
// case 1: if the entire node is encompassed by what is being deleted
if (cursor==head) { // still at head
head = head->next;
past = cursor;
delete(cursor);
} else {
past->next = cursor->next;
delete(cursor);
}
len--;
} else if (rangeStart<=cursor->start && rangeEnd>=cursor->start && rangeEnd<=cursor->end) {
// case 2: the rangeStart is smaller than node's rangeStart
cursor->start = rangeEnd+1;
len--;
} else if (rangeEnd>=cursor->end && rangeStart>=cursor->start && rangeStart<=cursor->end) {
// case 3: the rangeEnd is larger than node's rangeEnd
cursor->end = rangeStart-1;
len--;
} else if (cursor->start < rangeStart && cursor->end > rangeEnd){
// case 4: the range is in the middle of a node (split)
RNode *newNode = new RNode();
newNode->start = rangeEnd+1;
newNode->end = cursor->end;
newNode->next = cursor->next;
cursor->end=rangeStart-1;
cursor->next = newNode;
len--;
}
past = cursor;
cursor=temp;
} // end while
} // end of deleteRange
int main(){
RangeSet S, T;
S.addRange(5,10);
S.addRange(22,33);
S.addRange(4,6);
T.addRange(30,35);
RangeSet U;
U = *RangeSet::Union(T,S);
U.addRange(1,1);
U.addRange(39,40);
U.addRange(40,150);
RangeSet B(U);
if (B==U)
cout << "COPY CONSTRUCTOR + OVERLOADED OPERATOR WORKED!" << endl;
U.dump();
cout << endl;
U.deleteRange(1,35);
U.deleteRange(75,100);
U.dump();
}
这是我在运行 valgrind 时收到的新错误(ish,我早些时候收到了它们,但我认为我已经修复了它们):
==22482== Invalid read of size 8
==22482== at 0x40122D: RangeSet::deleteAllElements() (RangeSet.cpp:237)
==22482== by 0x400B79: RangeSet::~RangeSet() (RangeSet.cpp:47)
==22482== by 0x401524: main (TestRange.cpp:30)
==22482== Address 0x5a03368 is 8 bytes inside a block of size 16 free'd
==22482== at 0x4C2A4BC: operator delete(void*) (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==22482== by 0x401261: RangeSet::deleteAllElements() (RangeSet.cpp:241)
==22482== by 0x400B79: RangeSet::~RangeSet() (RangeSet.cpp:47)
==22482== by 0x401500: main (TestRange.cpp:30)
这就是为什么我认为我的问题必须出在 deleteAllElements 中,但我仍然很困惑!
编辑 4 请注意,主要功能是根据提供给我的框架改编的,因此如果问题出在其中,我不能做太多更改。
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!