- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我似乎找不到我在内存分配方面出错的地方。所有功能都正常工作,但程序在整个执行过程中随机崩溃。我知道错误在于我如何为链表分配内存,但我似乎无法弄清楚哪一部分是错误的。
#include <iostream>
#include <string.h>
#include <stdio.h>
#include <cstring>
using namespace std;
void menu_function(void);
void command_execute(string command, string name1, string name2);
int hash_function(string str);
void insert_into_hashtable(int ascii_total, string name);
void add_friendship(int ascii_key, string name);
void print_friendships(int aascii_key);
void check_friendship(int ascii_key, string name);
void remove_friendship(int ascii_key, string name);
#define SIZE 125
struct friend_list {
string name = "";
struct friend_list * next;
};
typedef struct friend_list list;
struct user {
string name;
int key;
friend_list * FriendList;
};
struct user * hashArray[SIZE];
int main(int argc,
const char * argv[]) {
menu_function();
return 0;
}
void menu_function() {
char user_input[100]; //this could limit the size of input
string command;
string name1 = "\0";
string name2 = "\0";;
char * token; ** strong text **
int inputsize = 100;
int i = 0;
char delimit[] = " \t\r\n\v\f";
while (1) {
printf("\nP <Name> to create a person\n");
printf("F <Name> <Name> record friendship\n");
printf("U <Name> <Name> terminate friendship\n");
printf("L <Name> print out friends of a specified person\n");
printf("Q <Name> <Name> check friendship status of two people\n");
printf("X - terminate the progarm\n");
// Determine user input and
fgets(user_input, inputsize, stdin);
//getline(&input, &inputsize, stdin);//takes in user input;
//printf("input: %s", user_input);
//parsing the string for the data within
token = strtok(user_input, delimit);
i = 0;
while (token != NULL) {
if (i == 0) {
command = token;
//cout<< command<<endl;
}
if (i == 1) {
name1 = token;
// cout<< name1<<":"<<endl;
}
if (i == 2) {
name2 = token;
// cout<< name2<<":"<<endl;
name1 = name1 + "\n";
}
token = strtok(NULL, " ");
i++;
}
command_execute(command, name1, name2);
command = '\0';
name1 = '\0';
name2 = '\0';
}
}
void command_execute(string command, string name1, string name2) {
//cout<<"command is: "<<command<<endl;
switch (command[0]) {
case 'P': //Create record of the person
insert_into_hashtable(hash_function(name1), name1);
break;
case 'F': //Record friendship
add_friendship(hash_function(name1), name2);
add_friendship(hash_function(name2), name1);
break;
case 'U': //Terminate Friendship
remove_friendship(hash_function(name1), name2);
remove_friendship(hash_function(name2), name1);
break;
case 'L': //Print out the persons Friends
print_friendships(hash_function(name1));
break;
case 'Q': //Check on friendship
check_friendship(hash_function(name1), name2);
break;
case 'X': //Exit the program **** COMPLETED
exit(1);
break;
default:
cout << "Error occured based on your command please try again" << endl;
break;
}
}
int hash_function(string string) {
//going to use the ASCI value of the name with different weights per array position to hash the names
int ascii_key = 0;
int ascii_total = 0;
// cout<< string.length()<< endl;
//cout<< string<< endl;
for (int i = 0; i < string.length() - 1; i++) {
ascii_total = (int) string[i] * (i * 3 + 1);
// cout<< string[i]<< endl;
}
ascii_key = ascii_total % SIZE;
//deals with colisions through open hashing
while (hashArray[ascii_key] != NULL && strcmp(hashArray[ascii_key] - > name.c_str(), string.c_str())) { //strcmp(hashArray[ascii_key]->name.c_str(), string.c_str())
//hashArray[ascii_key] != NULL ||
ascii_key++;
}
// ****** decide size of the hash table and then finished hashing function. Usually hash time is gonna be half full
cout << ascii_key << endl;
return ascii_key;
}
void insert_into_hashtable(int ascii_key, string name) {
int k = 0;
//get the hash key
user * item = (user * ) malloc(sizeof(struct user));
item - > name = name;
item - > key = ascii_key;
item - > FriendList = NULL;
cout << ascii_key << endl;
//collisions resolved by linear probing
//store the user in the table
hashArray[ascii_key] = item;
k++;
//free(item);
}
void add_friendship(int ascii_key, string name) {
//gonna have to check for valid input on users
list * add = (list * ) malloc(sizeof(struct friend_list));
add - > name = name;
add - > next = NULL;
if (ascii_key == 13) {
ascii_key = ascii_key;
}
/* if( hashArray[ascii_key]->FriendList->next == NULL )
{
cout<<hashArray[ascii_key]->FriendList<<endl;
hashArray[ascii_key]->FriendList = temp;
}
else*/
{
add - > next = hashArray[ascii_key] - > FriendList;
hashArray[ascii_key] - > FriendList = add;
}
free(add);
}
void print_friendships(int ascii_key) {
friend_list * temp = (friend_list * ) malloc(sizeof(friend_list));
temp = hashArray[ascii_key] - > FriendList;
while (temp != NULL) {
cout << temp - > name << endl;
if (temp - > next == NULL) {
free(temp);
return;
}
temp = temp - > next;
}
//free(temp);
}
void check_friendship(int ascii_key, string name) {
list * temp = (list * ) malloc(sizeof(struct friend_list));
temp = hashArray[ascii_key] - > FriendList;
while (temp != NULL) {
if (strcmp(temp - > name.c_str(), name.c_str()) == 0) {
cout << "Friendship exist" << endl;
return;
}
temp = temp - > next;
}
cout << "No Record of Friendship" << endl;
free(temp);
}
//need to finish
void remove_friendship(int ascii_key, string name) {
list * temp = (list * ) malloc(sizeof(struct friend_list));
list * prev = (list * ) malloc(sizeof(struct friend_list));
temp = hashArray[ascii_key] - > FriendList;
if (temp != NULL && temp - > name == name) {
hashArray[ascii_key] - > FriendList = temp - > next; // Changed head
// free old head
return;
}
//not the head
while (temp != NULL && temp - > name != name) {
prev = temp;
temp = temp - > next;
}
if (temp == NULL) return;
// Unlink the node from linked list
prev - > next = temp - > next;
free(temp);
free(prev);
}
最佳答案
可能有很多错误,但这是一个很大的错误
user *item = (user*) malloc(sizeof(struct user));
应该是
user *item = new user;
在 C++ 中,您应该始终使用new
。 new
和malloc
的区别在于malloc
不调用任何构造函数。因此,在您的 user
对象中,不会调用 string name
的构造函数。因此,每当您尝试使用 name
时,您都会遇到未定义的行为(即潜在的崩溃)。正如评论中所述,出于基本相同的原因,您还应该使用 delete
而不是 free
。
仔细查看代码后,发现有很多与指针相关的错误。比如这个怎么样
list* temp = (list*)malloc(sizeof(struct friend_list));
temp = hashArray[ascii_key]->FriendList;
暂时忘掉 malloc 和 new,看看上面的代码。你有一个指针 temp
指向一些分配的内存。然后你扔掉那段内存,让 temp
指向 hashArray[ascii_key]->FriendList
。如果不使用内存,分配内存有什么意义?然后通过在函数末尾释放内存来复合错误。
free(temp);
但是 temp
不再指向分配的内存(因为您改为指向 friend 列表)。很明显,您还没有真正理解指针和内存分配。
下面是你应该如何编写该函数
void check_friendship( int ascii_key, string name)
{
list* temp = hashArray[ascii_key]->FriendList;
while( temp != NULL)
{
if(strcmp(temp->name.c_str(), name.c_str()) == 0)
{
cout<<"Friendship exist"<<endl;
return;
}
temp = temp->next;
}
cout<<"No Record of Friendship"<<endl;
}
参见根本没有分配。我猜你脑子里有某种规则,只要有指针,我就必须分配一些内存。那不是真的,分配是关于创建新对象。 check_friendship
不会创建任何新对象(它只会检查现有对象),因此它不需要分配或释放任何东西。
remove_friendship
有同样的问题,因为它正在删除一个友元,它应该 delete
一个对象,(友元被删除)但是没有理由让它分配任何东西.
add_friendship
有同样的错误,但相反。 add_friendship
应该为添加的友元分配一个新对象,你这样做,然后你尝试在函数结束时释放该对象。您在某种笼统的规则下操作,即每个指针变量都必须分配然后释放,而不是从逻辑上考虑每个函数需要创建或销毁哪些对象。
关于c++ - 如何为这个链表正确分配内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55156454/
这个问题已经有答案了: How to do case insensitive string comparison? (23 个回答) 已关闭 3 年前。 用户在我的输入栏中写入“足球”,然后执行第 6
啊,不习惯 javascript 中的字符串。 character_id= + id + correct= + correctOrIncorrect 这就是我需要制作成字符串的内容。如果您无法猜测字符
$(function() { var base_price = 0; CalculatePrice(); $(".math1").on('change', function(e) { Calc
我找不到任何文章回答问题:将Spinnaker部署到Spinnaker将管理的同一Kubernetes集群是否安全/正确?我主要是指生产,HA部署。 最佳答案 我认为Spinnaker和Kuberne
我正在使用MSVC在Windows上从源代码(官方源代码发布,而不是从仓库中)构建Qt5(Qt 5.15.0)。 我正在设置环境。变量,依赖项等,然后运行具有1600万个选项的configure,最后
我需要打印一个包含重复单词的数组。我的数组已经可以工作,但我不知道如何正确计算单词数。我已经知道,当我的索引计数器 (i) 为 49 时,并且当 (i) 想要计数到 50 时,我会收到错误,但我不知道
我正在遵循一个指南,该指南允许 Google map 屏幕根据屏幕尺寸禁用滚动。我唯一挣扎的部分是编写一个代码,当我手动调整屏幕大小时动态更改 True/False 值。 这是我按照说明操作的网站,但
我有一个类“FileButton”。它的目的是将文件链接到 JButton,FileButton 继承自 JButton。子类继承自此以使用链接到按钮的文件做有用的事情。 JingleCardButt
我的 friend 数组只返回一个数字而不是所有数字。 ($myfriends = 3) 应该是…… ($myfriends = 3 5 7 8 9 12). 如果我让它进入 while 循环……整个
这个问题在这里已经有了答案: Is there a workaround to make CSS classes with names that start with numbers valid?
我正在制作一个 JavaScript 函数,当调整窗口大小时,它会自动将 div 的大小调整为与窗口相同的宽度/高度。 该功能非常基本,但我注意到在调整窗口大小时出现明显的“绘制”滞后。在 JS fi
此问题的基本视觉效果可在 http://sevenx.de/demo/bootstrap-carousel/inc.carousel/tabbed-slider.html 获得。 - 如果你想看一看。
我明白,如果我想从函数返回一个字符串文字或一个数组,我应该将其声明为静态的,这样当被调用的函数被返回时,内容就不会“消亡”。 但我的问题是,当我在函数内部使用 malloc 分配内存时会怎样? 在下面
在 mySQL 数据库中存储 true/false/1/0 值最合适(读取数据消耗最少)的数据字段是什么? 我以前使用过一个字符长的 tinyint,但我不确定它是否是最佳解决方案? 谢谢! 最佳答案
我想一次读取并处理CSV文件第一行中的条目(例如打印)。我假设使用Unix风格的\n换行符,没有条目长度超过255个字符,并且(现在)在EOF之前有一个换行符。这意味着它是fgets()后跟strto
所以,我们都知道 -1 > 2u == true 的 C/C++ 有符号/无符号比较规则,并且我有一种情况,我想有效地实现“正确”比较。 我的问题是,考虑到人们熟悉的尽可能多的架构,哪种方法更有效。显
**摘要:**文章的标题看似自相矛盾。 本文分享自华为云社区《Java异常处理:如何写出“正确”但被编译器认为有语法错误的程序》,作者: Jerry Wang 。 文章的标题看似自相矛盾,然而我在“正
我有一个数据框,看起来像: dataDemo % mutate_each(funs(ifelse(. == '.', REF, as.character(.))), -POS) # POS REF
有人可以帮助我使用 VBScript 重新格式化/正确格式化带分隔符的文本文件吗? 我有一个文本文件 ^分界如下: AGREE^NAME^ADD1^ADD2^ADD3^ADD4^PCODE^BAL^A
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我是一名优秀的程序员,十分优秀!