c# 算法及數(shù)據(jù)結(jié)構(gòu)每日練習(xí)記錄_3
1.
https://leetcode.cn/problems/move-zeroes/description/?envType=study-plan&id=suan-fa-ru-men&plan=algorithms&plan_progress=b48xitv&orderBy=most_votes&languageTags=csharp
給定一個(gè)數(shù)組 nums
,編寫一個(gè)函數(shù)將所有 0
移動(dòng)到數(shù)組的末尾,同時(shí)保持非零元素的相對(duì)順序。
請(qǐng)注意
2.
https://leetcode.cn/problems/two-sum-ii-input-array-is-sorted/?envType=study-plan&id=suan-fa-ru-men&plan=algorithms&plan_progress=b48xitv
給你一個(gè)下標(biāo)從 1 開始的整數(shù)數(shù)組 numbers
,該數(shù)組已按 非遞減順序排列 ,請(qǐng)你從數(shù)組中找出滿足相加之和等于目標(biāo)數(shù) target
的兩個(gè)數(shù)。如果設(shè)這兩個(gè)數(shù)分別是 numbers[index1]
和 numbers[index2]
,則 1 <= index1 < index2 <= numbers.length
。
以長(zhǎng)度為 2 的整數(shù)數(shù)組 [index1, index2]
的形式返回這兩個(gè)整數(shù)的下標(biāo) index1
和 index2
。
你可以假設(shè)每個(gè)輸入 只對(duì)應(yīng)唯一的答案 ,而且你 不可以 重復(fù)使用相同的元素。
你所設(shè)計(jì)的解決方案必須只使用常量級(jí)的額外空間
1.
https://leetcode.cn/problems/intersection-of-two-arrays-ii/solutions/?orderBy=most_votes&languageTags=csharp
nums1
和 nums2
2.
https://leetcode.cn/problems/best-time-to-buy-and-sell-stock/?envType=study-plan&id=shu-ju-jie-gou-ru-men&plan=data-structures&plan_progress=b4tf6qe
給定一個(gè)數(shù)組 prices
,它的第 個(gè)元素 prices[i]
表示一支給定股票第 i
天的價(jià)格。
你只能選擇 某一天 買入這只股票,并選擇在 未來的某一個(gè)不同的日子 賣出該股票。設(shè)計(jì)一個(gè)算法來計(jì)算你所能獲取的最大利潤(rùn)。
返回你可以從這筆交易中獲取的最大利潤(rùn)。如果你不能獲取任何利潤(rùn),返回 0