09 2023 档案
摘要:一、 二、 伺服电机、变频电机、普通电机之间有什么区别? https://zhuanlan.zhihu.com/p/144324107 三、 四、 五、 六、 七、 伺服电机的控制:https://www.chuandong.com/tech/tech30239.html 手动挡汽车熄火原因是什么
阅读全文
摘要:Qt的简单使用: https://www.cnblogs.com/carsonzhu/p/10815654.html 一个案例: 图像处理仿真平台 https://blog.csdn.net/qq_37340229/article/details/128685044 该系统主要针对医学 超声图像进行
阅读全文
摘要:一、 https://blog.csdn.net/CH_monsy/article/details/108001875 二、 三、 https://zhuanlan.zhihu.com/p/83598756 : 四、 五、 六: 七、 八、 一、安装ubuntu18.04 1、Ubuntu18.04
阅读全文
摘要:class Solution: def simplifyPath(self, path: str) -> str: li=path.split("/") res=[] for i in li: if i=='..' and res: res.pop() if i!='.' and i!='..' a
阅读全文
摘要:class Solution: def canCompleteCircuit(self, gas: List[int], cost: List[int]) -> int: n=len(gas) max_gas=0 rest=0 records=[] start=0 for i in range(n)
阅读全文
摘要:福昕高级PDF编辑器安装激活教程(绝对免费)_哔哩哔哩_bilibili 萝卜官网补丁下载:https://www.carrotchou.com/1593.htmlUP的网盘下载:链接:https://pan.baidu.com/s/1VKMsjqlb-K9KySS3HGdlhA 提取码:5gt4
阅读全文
摘要:Python3中的保留字(关键字) | AmosCloud Wiki
阅读全文
摘要:4.4 Python类的高级特性 | AmosCloud Wiki
阅读全文
摘要:2.4 Python函数式编程特性 | AmosCloud Wiki 解释了为何装饰器需要两个return. 一个return是返回函数名,这是相当于改写了函数名;幸运的是python提供了一个函数functools.wraps解决了这个问题。 另一个return 返回函数操作结果。 特殊地,有方法
阅读全文
摘要:lamda简单构建函数: 冒号“:"前为输入,后为输出 2.4 Python函数式编程特性 | AmosCloud Wiki
阅读全文
摘要:列表可转化成迭代器,iteration=iter(list) 生成器是一个用yeild返回的函数 2.2 Python循环结构与迭代器 | AmosCloud Wiki
阅读全文
摘要:catalog: 1、全局变量、局部变量——函数 1.1具体使用案例 2、类变量、私有变量、保护变量、公开变量——类 2.1 具体使用案例 content:
阅读全文
摘要:2023-09-05 计划 日期 计划 9月5号 二叉树遍历的笔记通过学习整理好,发布 9月6号 9月7号 9月8号 9月9号 9月10号 9月11号 9月12号 9月13号 9月14号 9月15号 9月16号 9月17号 9月18号 9月19号 9月20号 9月21号 9月22号 9月23号 9月
阅读全文
摘要:目录: 1、遍历二叉树的方法三种: 中序遍历,前序遍历,后序遍历 2、使用的数据结构和方法是: a、栈;迭代 b、迭代 3、二叉树遍历的程序实现: 4、基本操作:二叉树的最大深度,最小深度,所有路径。 content: 前序:中左右;中序:左中右;后序:左右中 3、实现代码 python实现二叉树的
阅读全文
摘要:下面采用穷举的方法。但是超时。 注意:题目示例中看起来输出是字符串‘true’or'false'。但是实际输出是bool类型,所以在下面程序中进行了转换。 class Solution: def __init__(self): self.ans='false' def wordBreak(self,
阅读全文
摘要:# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.
阅读全文
摘要:class Solution: def combinationSum(self, candidates, target): res,ans=[],[] def findpath(candidates): if sum(ans)==target: res.append(ans.copy()) retu
阅读全文