26 lines
211 B
Plaintext
26 lines
211 B
Plaintext
@startuml
|
|
|
|
rectangle "Traversal"
|
|
|
|
() previous
|
|
() current
|
|
() next
|
|
|
|
previous --> current
|
|
current --> next
|
|
|
|
note right
|
|
|
|
save next
|
|
|
|
detach current
|
|
|
|
append to
|
|
destination queue
|
|
|
|
continue with next
|
|
|
|
end note
|
|
|
|
@enduml
|