Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cours
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
algorithmique
cours
Commits
a2c8decf
Verified
Commit
a2c8decf
authored
3 years ago
by
orestis.malaspin
Browse files
Options
Downloads
Patches
Plain Diff
with function pointer+
parent
9db7d84a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/hashmap/hm.c
+27
-27
27 additions, 27 deletions
examples/hashmap/hm.c
with
27 additions
and
27 deletions
examples/hashmap/hm.c
+
27
−
27
View file @
a2c8decf
...
...
@@ -19,27 +19,22 @@ static int rehash(char *key) {
return
1
;
}
static
int
find_index
(
hm
h
,
char
key
[
MAX_LEN
],
bool
insert
)
{
static
bool
search_condition
(
hm
h
,
char
key
[
MAX_LEN
],
int
index
)
{
return
strncmp
(
h
.
table
[
index
].
key
,
key
,
MAX_LEN
)
==
0
&&
h
.
table
[
index
].
state
==
occupied
;
}
static
bool
set_condition
(
hm
h
,
char
key
[
MAX_LEN
],
int
index
)
{
return
search_condition
(
h
,
key
,
index
)
||
h
.
table
[
index
].
state
!=
occupied
;
}
static
int
find_index
(
hm
h
,
char
key
[
MAX_LEN
],
bool
(
*
condition
)(
hm
,
char
[],
int
))
{
int
try
=
0
;
int
index
=
hash
(
h
,
key
);
while
(
try
<
h
.
capacity
)
{
switch
(
h
.
table
[
index
].
state
)
{
case
occupied
:
if
(
strncmp
(
h
.
table
[
index
].
key
,
key
,
MAX_LEN
)
==
0
)
{
return
index
;
}
break
;
case
empty
:
return
index
;
break
;
case
deleted
:
if
(
insert
)
{
return
index
;
}
break
;
default:
return
-
1
;
break
;
if
(
condition
(
h
,
key
,
index
))
{
return
index
;
}
index
=
(
index
+
rehash
(
key
))
%
h
.
capacity
;
try
+=
1
;
...
...
@@ -72,7 +67,7 @@ bool hm_set(hm *h, char *key, char *value) {
return
false
;
}
int
index
=
find_index
(
*
h
,
key
,
true
);
int
index
=
find_index
(
*
h
,
key
,
set_condition
);
if
(
index
<
0
)
{
return
false
;
}
...
...
@@ -85,16 +80,16 @@ bool hm_set(hm *h, char *key, char *value) {
}
bool
hm_get
(
hm
h
,
char
*
key
,
char
*
value
)
{
int
index
=
find_index
(
h
,
key
,
false
);
if
(
index
>=
0
&&
h
.
table
[
index
].
state
==
occupied
)
{
int
index
=
find_index
(
h
,
key
,
search_condition
);
if
(
index
>=
0
)
{
strncpy
(
value
,
h
.
table
[
index
].
value
,
MAX_LEN
);
return
true
;
}
return
false
;
}
bool
hm_remove
(
hm
*
h
,
char
*
key
,
char
*
value
)
{
int
index
=
find_index
(
*
h
,
key
,
false
);
if
(
index
>=
0
&&
h
->
table
[
index
].
state
==
occupied
)
{
int
index
=
find_index
(
*
h
,
key
,
search_condition
);
if
(
index
>=
0
)
{
h
->
table
[
index
].
state
=
deleted
;
strncpy
(
value
,
h
->
table
[
index
].
value
,
MAX_LEN
);
h
->
size
-=
1
;
...
...
@@ -104,8 +99,8 @@ bool hm_remove(hm *h, char *key, char *value) {
}
bool
hm_search
(
hm
h
,
char
*
key
)
{
int
index
=
find_index
(
h
,
key
,
false
);
return
(
index
>=
0
&&
h
.
table
[
index
].
state
==
occupied
);
int
index
=
find_index
(
h
,
key
,
search_condition
);
return
(
index
>=
0
);
}
void
hm_print
(
hm
h
)
{
...
...
@@ -116,8 +111,13 @@ void hm_print(hm h) {
printf
(
"The hashmap is empty.
\n
"
);
}
for
(
int
i
=
0
;
i
<
h
.
capacity
;
++
i
)
{
printf
(
"index: %d, key: %s, value: %s
\n
"
,
i
,
h
.
table
[
i
].
key
,
h
.
table
[
i
].
value
);
if
(
h
.
table
[
i
].
state
==
occupied
)
{
printf
(
"index: %d, key: %s, value: %s
\n
"
,
i
,
h
.
table
[
i
].
key
,
h
.
table
[
i
].
value
);
}
else
{
printf
(
"index: %d, key: {none}, value: {none}
\n
"
,
i
);
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment