All pastes #37643 Raw Edit

Stuff

public text v1 · immutable
#37643 ·published 2006-01-20 20:48 UTC
rendered paste body
Search(s)
{
  priority_queue p
  p.push(s)
  while not p.empty
  {
    n=p.pop
    if n is goal
    {
      return n
    }
    succ=expand(n)
    for each s' in succ
    {
      p.push(s)
    }
  }
  return failure
}