Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3-pq
Commits
6c34ec60
Unverified
Commit
6c34ec60
authored
Oct 30, 2019
by
Steven Allen
Committed by
GitHub
Oct 30, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3 from ipfs/feat/peek
add Peek() method
parents
080776c4
cbc2990c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
pq.go
pq.go
+10
-1
pq_test.go
pq_test.go
+12
-1
No files found.
pq.go
View file @
6c34ec60
...
@@ -7,8 +7,10 @@ import "container/heap"
...
@@ -7,8 +7,10 @@ import "container/heap"
type
PQ
interface
{
type
PQ
interface
{
// Push adds the ele
// Push adds the ele
Push
(
Elem
)
Push
(
Elem
)
// Pop returns the highest priority Elem in PQ.
// Pop
removes and
returns the highest priority Elem in PQ.
Pop
()
Elem
Pop
()
Elem
// Peek returns the highest priority Elem in PQ (without removing it).
Peek
()
Elem
// Len returns the number of elements in the PQ.
// Len returns the number of elements in the PQ.
Len
()
int
Len
()
int
// Update `fixes` the PQ.
// Update `fixes` the PQ.
...
@@ -56,6 +58,13 @@ func (w *wrapper) Pop() Elem {
...
@@ -56,6 +58,13 @@ func (w *wrapper) Pop() Elem {
return
heap
.
Pop
(
&
w
.
heapinterface
)
.
(
Elem
)
return
heap
.
Pop
(
&
w
.
heapinterface
)
.
(
Elem
)
}
}
func
(
w
*
wrapper
)
Peek
()
Elem
{
if
len
(
w
.
heapinterface
.
elems
)
==
0
{
return
nil
}
return
w
.
heapinterface
.
elems
[
0
]
.
(
Elem
)
}
func
(
w
*
wrapper
)
Update
(
index
int
)
{
func
(
w
*
wrapper
)
Update
(
index
int
)
{
heap
.
Fix
(
&
w
.
heapinterface
,
index
)
heap
.
Fix
(
&
w
.
heapinterface
,
index
)
}
}
...
...
pq_test.go
View file @
6c34ec60
...
@@ -51,14 +51,19 @@ func TestCorrectnessOfPop(t *testing.T) {
...
@@ -51,14 +51,19 @@ func TestCorrectnessOfPop(t *testing.T) {
q
.
Push
(
&
e
)
q
.
Push
(
&
e
)
}
}
var
priorities
[]
int
var
priorities
[]
int
var
peekPriorities
[]
int
for
q
.
Len
()
>
0
{
for
q
.
Len
()
>
0
{
i
:=
q
.
Pop
()
.
(
*
TestElem
)
.
Priority
i
:=
q
.
Pop
()
.
(
*
TestElem
)
.
Priority
t
.
Logf
(
"popped %v"
,
i
)
t
.
Logf
(
"popped %v"
,
i
)
priorities
=
append
(
priorities
,
i
)
priorities
=
append
(
priorities
,
i
)
peekPriorities
=
append
(
peekPriorities
,
i
)
}
}
if
!
sort
.
IntsAreSorted
(
priorities
)
{
if
!
sort
.
IntsAreSorted
(
p
eekP
riorities
)
{
t
.
Fatal
(
"the values were not returned in sorted order"
)
t
.
Fatal
(
"the values were not returned in sorted order"
)
}
}
if
!
sort
.
IntsAreSorted
(
priorities
)
{
t
.
Fatal
(
"the popped values were not returned in sorted order"
)
}
}
}
func
TestUpdate
(
t
*
testing
.
T
)
{
func
TestUpdate
(
t
*
testing
.
T
)
{
...
@@ -73,12 +78,18 @@ func TestUpdate(t *testing.T) {
...
@@ -73,12 +78,18 @@ func TestUpdate(t *testing.T) {
q
.
Push
(
middle
)
q
.
Push
(
middle
)
q
.
Push
(
highest
)
q
.
Push
(
highest
)
q
.
Push
(
lowest
)
q
.
Push
(
lowest
)
if
q
.
Peek
()
.
(
*
TestElem
)
.
Key
!=
highest
.
Key
{
t
.
Fatal
(
"head element doesn't have the highest priority"
)
}
if
q
.
Pop
()
.
(
*
TestElem
)
.
Key
!=
highest
.
Key
{
if
q
.
Pop
()
.
(
*
TestElem
)
.
Key
!=
highest
.
Key
{
t
.
Fatal
(
"popped element doesn't have the highest priority"
)
t
.
Fatal
(
"popped element doesn't have the highest priority"
)
}
}
q
.
Push
(
highest
)
// re-add the popped element
q
.
Push
(
highest
)
// re-add the popped element
highest
.
Priority
=
0
// update the PQ
highest
.
Priority
=
0
// update the PQ
q
.
Update
(
highest
.
Index
())
// fix the PQ
q
.
Update
(
highest
.
Index
())
// fix the PQ
if
q
.
Peek
()
.
(
*
TestElem
)
.
Key
!=
middle
.
Key
{
t
.
Fatal
(
"middle element should now have the highest priority"
)
}
if
q
.
Pop
()
.
(
*
TestElem
)
.
Key
!=
middle
.
Key
{
if
q
.
Pop
()
.
(
*
TestElem
)
.
Key
!=
middle
.
Key
{
t
.
Fatal
(
"middle element should now have the highest priority"
)
t
.
Fatal
(
"middle element should now have the highest priority"
)
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment