摘要: 1 # Write your MySQL query statement below select Person.FirstName,Person.LastName,Address.City,Address.State from Person left join Address on Person. 阅读全文
posted @ 2020-12-23 23:03 谢义xieyi521149 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1 # 暴力解法 class Solution: def twoSum(self, nums: List[int], target: int) -> List[int]: i = 0 while i<len(nums): j = i+1 while j<len(nums): if nums[i] + 阅读全文
posted @ 2020-12-23 21:12 谢义xieyi521149 阅读(63) 评论(0) 推荐(0) 编辑
摘要: C++学习第一天总结 阅读全文
posted @ 2020-12-13 20:46 谢义xieyi521149 阅读(32) 评论(0) 推荐(0) 编辑
摘要: numpy ravel()、flatten()、squeeze() 都有将多维数组转换为一维数组的功能。 ravel():如果没有必要,不会产生源数据的副本 flatten():返回源数据的副本 squeeze():只能对维数为1的维度降维 阅读全文
posted @ 2020-12-09 20:31 谢义xieyi521149 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 数值计算方法 二分法 1 ! 二分法 求f(x) = x**3 -2*x**2 + 7*x +4 = 0的解 2 program exam 3 4 real x1, x2, x 5 real bisect, func 6 7 do 8 print *, "输入x1,x2的值:" 9 read *, 阅读全文
posted @ 2020-12-09 12:04 谢义xieyi521149 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 问题:量纲系统问题 问题1 Too many attempts made for this incrementAbaqus/Standard Analysis exited with an error - Please see the message file for possible error 阅读全文
posted @ 2020-12-06 14:15 谢义xieyi521149 阅读(8032) 评论(0) 推荐(0) 编辑
摘要: 基础 字典 # 字典 me = {'height': 180} print(me['height']) me['weight'] = 18 print(me) 读取图片 import matplotlib.pyplot as plt from matplotlib.image import imre 阅读全文
posted @ 2020-11-30 19:48 谢义xieyi521149 阅读(1551) 评论(0) 推荐(0) 编辑
摘要: 选中标注线 + (CTRL + 1)// 显示特性表,标注偏差,公差 阅读全文
posted @ 2020-11-28 21:45 谢义xieyi521149 阅读(82) 评论(0) 推荐(0) 编辑
摘要: ROS: Robot Operating System ROS = 通信机制 + 开发工具 + 应用功能 + 生态系统 Linux sudo 提升管理员权限 tab 补全命令 Linux下载源 CTRL + ALT + T 打开一个终端 pwd // 当前目录的路径 cd /home/ //进入ho 阅读全文
posted @ 2020-11-27 21:50 谢义xieyi521149 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 数据结构与算法 三大内容:逻辑结构+存储结构+数据操作+应用实践。 线性表 线性表是最基本、最简单、也是最常用的一种数据结构。在线性表中数据元素之间的关系是线性,数据元素可以看成是排列在一条线上或一个环上。 线性表分为静态线性表和动态线性表,常见的有顺序表(静态的)、单向链表(动态的)和双向链表(动 阅读全文
posted @ 2020-11-25 23:26 谢义xieyi521149 阅读(281) 评论(0) 推荐(0) 编辑