#include #include using namespace std; int n,map[30],vis[30]; void dfs(int s[
最近寫C++或者Python的過程中發現,好多函數的調用形式總是記不清楚,需要搜索或者查官方文檔。於是乎希望能進一步熟悉這些函數的使用,這裡
題目大意:給出一個無向圖,問刪掉k條邊的時候,圖是否聯通。 思路:雖然我把這兩個題放在了一起,但是其實這兩個題可以用完全不同的兩個解法來解決。 第一個題其實
題目大意:給出平面上n個點,一個點離所有點的最長距離和最短距離的差最小,求這個最小的差。 思路:50W的數據為何O(nsqrt(n))的暴力能過???
Given a binary tree, return the preorder traversal of its nodes' value
Given a linked list, return the node where the cycle begins. If there is n
Given a linked list, determine if it has a cycle in it.Follow up:Can you s