Created
August 2, 2017 03:07
-
-
Save vigack/97ab6d07da0c21253efc16d3eabbc021 to your computer and use it in GitHub Desktop.
广度优先搜索
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 基本的实现思路:维护一个Queue,push根节点。当Queue非空,开始循环,POP->取值->PUSH LEFT节点->PUSH RIGHT节点 */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment