劍指offer 面試題13. 機器人的運動範圍 [中等]——DFS、BFS

解題:數組 1.使用queue實現廣度優先搜索,定義方向數組code class Solution { public: int func(int x){ int sum=0; while(x){ sum+=x%10; x/=10; } return sum; }
相關文章
相關標籤/搜索