vote up 0 vote down star

as i rememeber and checked, that the usual way for traversing a tree or crawling the web breadth first (BFS) is by using a queue. Is there actually a way to implement it not using a queue?

flag

25% accept rate
What would be the purpose of not using a queue? – AlbertoPL May 13 at 3:22

2 Answers

vote up 2 vote down

You really should be using a queue, as its easier to implement. Also, a queue allows for multiple machines to work together (one queues site while another pops sites off of the queue to traverse).

The only other way I see to do this is by using recursion (much more difficult, and uses only marginally either more or less memory).

link|flag
vote up 0 vote down

With recursion. But the queue is in the stack...

link|flag
is there like a simple pseudo code some where that can implement BFS using recursion? – Jian Lin May 13 at 3:44
I wonder about this too. How do you want to efficiently replace a queue by using the callstack? – Lucero Jun 29 at 14:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.