Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个Trie和几个修改它的函数。
typedef struct node *pnode; typedef struct node { int element; pnode next;//same level, other element pnode subtree;//next level } node;
现在,为了调试和/或测试我的功能,我需要打印出尝试。
我递归地尝试过,但我无法获得第一级,而不是第二级......
有什么好方法吗?
您必须使用队列,而不是使用堆栈(或通过重复来模拟它)。
http://en.wikipedia.org/wiki/Breadth-first_search