已加载'C:\ Windows \ System32 \ antdll.dll',未找到匹配的符号信息。 [英] Loaded 'C:\Windows\System32\ntdll.dll', no matching symbolic information found.

查看:203
本文介绍了已加载'C:\ Windows \ System32 \ antdll.dll',未找到匹配的符号信息。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include "iostream.h"
struct element
{
	int weight;
	int lchild,rchild,parent;
};
 int i1, i2;
void Select(element huffTree[]){
	int small,ssmall;
	small=ssmall=huffTree[0].weight;
		for(int i=1;huffTree[i].weight!=-1&&huffTree[i].parent!=-1;i++){
		if(huffTree[i].weight<small)>
			small=huffTree[i].weight;
		if(huffTree[i].weight<small&&hufftree[i].weight>small)
			ssmall=huffTree[i].weight;
		}
		i1=small;
		i2=ssmall;
}
void HuffmanTree(element huffTree[],int w[],int n){
	for(int i=0;i<2*n-1;i++){
		huffTree[i].lchild=-1;
		huffTree[i].parent=-1;
		huffTree[i].rchild=-1;
	}
	for(int k=0;k<n;k++)>
		huffTree[i].weight=w[i];
	for(int m=n;m<2*n-1;m++){
		Select(huffTree);
		huffTree[i1].parent=k;
		huffTree[i2].parent=k;
		huffTree[k].weight=huffTree[i2].weight+huffTree[i1].weight;
		huffTree[k].lchild=i1;
		huffTree[k].rchild=i2;
	}
}
void main(){
	int w[5]={1,2,3,4,5};
	element a[9];
	HuffmanTree(a,w,5);
	for(int i=0;i<9;i++)
		cout<<a[2].weight<<endl;

}











谁可以帮我解决问题?谢谢!!!






who can help me settle the problem? thanks!!!

推荐答案

错误说它无法加载ntdll.dll的符号,这意味着你...你没有符号所述dll。



此外,错误消息与您的代码段无关。你甚至没有说出你的问题是什么。
The error says that it couldn't load symbols for ntdll.dll, which means um... you don't have the symbols for the said dll.

Also, the error message has no relation to your code snippet. And you haven't even told what your problem is.


有什么问题?它只是说你没有为ntdll.dll安装符号。因为你没有在内核级别进行调试,所以并不是很少见。



或者,您可能正在尝试调试.EXE的发行版本。
What problem? All it's saying is that you don't have the symbols installed for ntdll.dll. Not really unusual since you're not debugging at the kernel level.

Or, you may be trying to debug the Release version of the .EXE.


我今天遇到同样的问题,你现在解决了吗?
i meet the same problem today, have you solve it now?


这篇关于已加载'C:\ Windows \ System32 \ antdll.dll',未找到匹配的符号信息。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆