Herr Deng桑的教學blog
這是Herr Deng桑的教學blog,主要處理作業與班導事務,另外還有數位小品。
網頁
首頁
密碼學
程式設計Programming
APP
計算機概論
herrDeng網內搜尋
自訂搜尋
Ads
2024年4月12日 星期五
python c++用monotonic stack解 Leetcode難題42 trapping rain water並附pyplot繪直方圖解說
Python c++用monotonic stack解 Leetcode難題42 trapping rain water並附pyplot繪直方圖解說
想法是使用索引 m 的單調堆疊來找到右牆height[r]和左牆height [l];計算此區域高於底部 height[m]的水量應為min(height[r]-height[m], height[l]-height[m])*(r-l-1)
按我讀文 »
2024年4月9日 星期二
Python C++速解Leetcode 2073 Time Needed to Buy Tickets
Python CPP速解LLeetcode 2073 Time Needed to Buy Tickets
假設x=tickets[k]。 當i≤k時,person[i]最多只能買x張票; 當 i大於k時,person[i]最多只能購買 x-1 票。python code請進
按我讀文 »
2024年4月8日 星期一
python requests股市爬蟲與pyplot數據視覺化操作
Python code如下:
按我讀文 »
2024年4月7日 星期日
python C++DP動態規劃解Leetcode 678 Valid Parenthesis String
python C++DP動態規劃解Leetcode 678 Valid Parenthesis String
使用2D DP來求解。 由於 n≤100,因此帶有 memo 的遞迴可以完成這項工作。 知道了遞迴那麼DP就一定可行!
第二種方法是迭代 DP 程式碼; 使用 &1 技巧減少空間至O(n)。Python code請進 。
按我讀文 »
較新的文章
較舊的文章
首頁
訂閱:
文章 (Atom)
熱門文章
11!=?
11!=?
計算你上學期加權平均
計算你上學期加權平均
計算你的BMI
計算你的BMI
C程式練習
int a[]={21, 23, 57, 13 ,17, 6}; float average; average=?
輸出字串20次
輸出字串20次
ex7 猜數字
猜數字
資料結構(Ch 1)
1. 利用遞迴input n算2^n 2. 用C算GCD(3333,456)
C字串練習
C字串練習 字串 char word[]="You win!"; 輸出為: You win! You win You wi You w You You Yo Y 給進階使用者: gets () 是個危險的函式!
3種金鑰?
無線網路中WEP安全嗎?