摘要: class Solution { public: vector<int> gardenNoAdj(int N, vector<vector<int>>& paths) { vector<int> G[N]; for (int i=0; i<paths.size(); i++){//建立邻接表 G[p 阅读全文
posted @ 2020-07-08 18:45 阿破 阅读(139) 评论(0) 推荐(0)