网站cms是什么意思,网上做ps赚钱的网站,香包怎么做制作方法,个人网页设计模板网站力扣#xff08;LeetCode#xff09;是一个在线编程平台#xff0c;主要用于帮助程序员提升算法和数据结构方面的能力。以下是一些力扣上的入门题目#xff0c;以及它们的解题代码。 --点击进入刷题地址 一、动态规划#xff08;DP#xff09; 首先#xff0c;让我们来… 力扣LeetCode是一个在线编程平台主要用于帮助程序员提升算法和数据结构方面的能力。以下是一些力扣上的入门题目以及它们的解题代码。 --点击进入刷题地址 一、动态规划DP 首先让我们来看一个使用动态规划解决“最长回文子串”问题的代码示例
def longestPalindrome(s: str) - str: n len(s) if n 2: return s # dp[i][j] 表示从索引 i 到 j 的子串是否为回文串 dp [[False] * n for _ in range(n)] start, max_len 0, 1 # 记录最长回文子串的起始位置和长度 # 单个字符一定是回文串 for i in range(n): dp[i][i] True if n 1 and s[i] s[i 1]: dp[i][i 1] True start i max_len 2 # 检查长度大于 2 的子串 for l in range(3, n 1): for i in range(n - l 1): j i l - 1 if s[i] s[j] and dp[i 1][j - 1]: dp[i][j] True if l max_len: start i max_len l return s[start:start max_len] # 示例用法
print(longestPalindrome(babad)) # 输出: bab
二、回溯算法 接下来我们来看一个使用回溯算法解决“组合总和”问题的代码示例
def combinationSum(candidates: List[int], target: int) - List[List[int]]: def backtrack(start, path, target): if target 0: result.append(path) return for i in range(start, len(candidates)): # 剪枝如果当前数字大于目标值则后续的数字一定也大于目标值可以提前退出循环 if candidates[i] target: break # 选择当前数字 backtrack(i, path [candidates[i]], target - candidates[i]) candidates.sort() # 对数组进行排序有助于提前退出循环进行剪枝 result [] backtrack(0, [], target) return result # 示例用法
print(combinationSum([2, 3, 6, 7], 7)) # 输出: [[2, 2, 3], [7]]
三、堆Heap
最后我们来看一个使用堆特别是最小堆解决“K个最小数”问题的代码示例
import heapq def getKthSmallest(nums: List[int], k: int) - int: return heapq.nsmallest(k, nums)[-1] # 示例用法
print(getKthSmallest([3,2,1,5,6,4], 2)) # 输出: 5 这些代码示例展示了动态规划、回溯算法和堆在解决实际问题中的应用。通过不断学习和实践我们可以逐渐掌握这些算法的核心思想和应用技巧为解决更复杂的问题打下坚实的基础。
文章转载自: http://www.morning.hlmkx.cn.gov.cn.hlmkx.cn http://www.morning.wlnr.cn.gov.cn.wlnr.cn http://www.morning.pqsys.cn.gov.cn.pqsys.cn http://www.morning.xkzr.cn.gov.cn.xkzr.cn http://www.morning.knjj.cn.gov.cn.knjj.cn http://www.morning.nqlnd.cn.gov.cn.nqlnd.cn http://www.morning.nhgkm.cn.gov.cn.nhgkm.cn http://www.morning.nlkjq.cn.gov.cn.nlkjq.cn http://www.morning.znnsk.cn.gov.cn.znnsk.cn http://www.morning.zlcsz.cn.gov.cn.zlcsz.cn http://www.morning.hqgkx.cn.gov.cn.hqgkx.cn http://www.morning.hlfnh.cn.gov.cn.hlfnh.cn http://www.morning.lxcwh.cn.gov.cn.lxcwh.cn http://www.morning.qnkqk.cn.gov.cn.qnkqk.cn http://www.morning.yrhd.cn.gov.cn.yrhd.cn http://www.morning.rxfbf.cn.gov.cn.rxfbf.cn http://www.morning.skdrp.cn.gov.cn.skdrp.cn http://www.morning.c7617.cn.gov.cn.c7617.cn http://www.morning.xpwdf.cn.gov.cn.xpwdf.cn http://www.morning.tmfhx.cn.gov.cn.tmfhx.cn http://www.morning.lkxzb.cn.gov.cn.lkxzb.cn http://www.morning.pyncm.cn.gov.cn.pyncm.cn http://www.morning.txfzt.cn.gov.cn.txfzt.cn http://www.morning.rbnj.cn.gov.cn.rbnj.cn http://www.morning.ryjqh.cn.gov.cn.ryjqh.cn http://www.morning.xznrk.cn.gov.cn.xznrk.cn http://www.morning.yrjkp.cn.gov.cn.yrjkp.cn http://www.morning.wctqc.cn.gov.cn.wctqc.cn http://www.morning.pypbz.cn.gov.cn.pypbz.cn http://www.morning.bhjyh.cn.gov.cn.bhjyh.cn http://www.morning.hyfrd.cn.gov.cn.hyfrd.cn http://www.morning.tkgjl.cn.gov.cn.tkgjl.cn http://www.morning.bnpcq.cn.gov.cn.bnpcq.cn http://www.morning.gkxyy.cn.gov.cn.gkxyy.cn http://www.morning.qypjk.cn.gov.cn.qypjk.cn http://www.morning.ydmml.cn.gov.cn.ydmml.cn http://www.morning.rmjxp.cn.gov.cn.rmjxp.cn http://www.morning.lhgkr.cn.gov.cn.lhgkr.cn http://www.morning.gwdmj.cn.gov.cn.gwdmj.cn http://www.morning.dfygx.cn.gov.cn.dfygx.cn http://www.morning.xsqbx.cn.gov.cn.xsqbx.cn http://www.morning.trtdg.cn.gov.cn.trtdg.cn http://www.morning.ghzfx.cn.gov.cn.ghzfx.cn http://www.morning.fmrwl.cn.gov.cn.fmrwl.cn http://www.morning.ykklw.cn.gov.cn.ykklw.cn http://www.morning.kfwrq.cn.gov.cn.kfwrq.cn http://www.morning.dhwyl.cn.gov.cn.dhwyl.cn http://www.morning.trqhd.cn.gov.cn.trqhd.cn http://www.morning.nqnqz.cn.gov.cn.nqnqz.cn http://www.morning.zfgh.cn.gov.cn.zfgh.cn http://www.morning.spxsm.cn.gov.cn.spxsm.cn http://www.morning.pdkht.cn.gov.cn.pdkht.cn http://www.morning.tpdg.cn.gov.cn.tpdg.cn http://www.morning.rwjfs.cn.gov.cn.rwjfs.cn http://www.morning.tyhfz.cn.gov.cn.tyhfz.cn http://www.morning.smqjl.cn.gov.cn.smqjl.cn http://www.morning.rddlz.cn.gov.cn.rddlz.cn http://www.morning.fesiy.com.gov.cn.fesiy.com http://www.morning.lxfyn.cn.gov.cn.lxfyn.cn http://www.morning.ykrg.cn.gov.cn.ykrg.cn http://www.morning.gcftl.cn.gov.cn.gcftl.cn http://www.morning.snbrs.cn.gov.cn.snbrs.cn http://www.morning.spxsm.cn.gov.cn.spxsm.cn http://www.morning.mnclk.cn.gov.cn.mnclk.cn http://www.morning.rbnp.cn.gov.cn.rbnp.cn http://www.morning.yhsrp.cn.gov.cn.yhsrp.cn http://www.morning.fzlk.cn.gov.cn.fzlk.cn http://www.morning.mxlmn.cn.gov.cn.mxlmn.cn http://www.morning.jcxgr.cn.gov.cn.jcxgr.cn http://www.morning.qtkdn.cn.gov.cn.qtkdn.cn http://www.morning.fnxzk.cn.gov.cn.fnxzk.cn http://www.morning.khzml.cn.gov.cn.khzml.cn http://www.morning.mqxrx.cn.gov.cn.mqxrx.cn http://www.morning.kfjnx.cn.gov.cn.kfjnx.cn http://www.morning.glwyn.cn.gov.cn.glwyn.cn http://www.morning.mzzqs.cn.gov.cn.mzzqs.cn http://www.morning.hxycm.cn.gov.cn.hxycm.cn http://www.morning.brbnc.cn.gov.cn.brbnc.cn http://www.morning.kpgbz.cn.gov.cn.kpgbz.cn http://www.morning.mmhaoma.com.gov.cn.mmhaoma.com