-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDictionary.cpp
93 lines (84 loc) · 2.33 KB
/
Dictionary.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//
// Created by Administrator on 2022/5/2.
//
#include "Dictionary.h"
#include <openssl/sha.h>
#include <cstring>
#include <iostream>
bool HashTable::insert(const char *element) {
int64_t hash[4];
SHA256(reinterpret_cast<const unsigned char *>(element), strlen(element), reinterpret_cast<unsigned char *>(hash));
size_t idx=hash[0] % s;
//cout<<"index: "<<idx<<endl;
HashNode* current_node=table[idx];
if(current_node== nullptr){
current_node = new HashNode;
current_node->value=strdup(element);
table[idx] = current_node;
n++;
}
else{
while(current_node->next != nullptr){
if(strcmp(current_node->value, element)==0){
return false;
}
current_node = current_node->next;
}
if(strcmp(current_node->value, element) == 0){
return false;
}
auto* new_node = new HashNode;
current_node->next = new_node;
new_node->next = nullptr;
new_node->value = strdup(element);
n++;
}
return true;
}
HashTable::HashTable(size_t size):s(size) {
table.resize(s);
}
bool HashTable::find(const char *element) {
int64_t hash[4];
SHA256(reinterpret_cast<const unsigned char *>(element), strlen(element), reinterpret_cast<unsigned char *>(hash));
size_t idx=hash[0] % s;
HashNode* current_node=table[idx];
if(current_node == nullptr)
return false;
else{
while(current_node != nullptr){
if(strcmp(current_node->value, element) == 0)
return true;
current_node = current_node->next;
}
}
return false;
}
bool HashTable::erase(const char* element) {
return false;
}
void HashTable::clear() {
for(int i=0;i<s;i++){
HashNode* current = table[i];
if(current == nullptr) continue;
else{
HashNode* next = current->next;
while(next != nullptr){
current = next;
next = current->next;
delete current->value;
current->value = nullptr;
delete current;
current = nullptr;
}
delete table[i]->value;
table[i]->value = nullptr;
delete table[i];
table[i] = nullptr;
}
}
n=0;
}
HashTable::~HashTable() {
clear();
}