牛客722691473号
牛客722691473号
全部文章
分类
读书笔记(1)
题解(12)
归档
标签
去牛客网
登录
/
注册
牛客722691473号的博客
全部文章
(共8篇)
题解 | #查找当前薪水详情以及部门编号dept_no#
SELECT d.emp_no,d.salary,d.from_date,m.to_date,m.dept_no FROM salaries as d RIGHT JOIN dept_manager as m on d.emp_no=m.emp_no;
2021-08-23
1
378
题解 | #反转链表#
统计 def ReverseList(self, pHead): # write code here if pHead == None or pHead.next == None: # 若链表为空或者仅一个数就直接返回 return ...
2021-08-23
0
352
题解 | #二叉树的镜像#
根据二叉树镜像的定义,考虑递归遍历(dfs)二叉树,交换每个节点的左 / 右子节点,即可生成二叉树的镜像。 def Mirror(self, pRoot): # write code here if not pRoot: return pR...
2021-08-22
0
407
题解 | #数组中出现次数超过一半的数字#
1、先找到元素出现的次数2、找到大于一般出现的元素3、找出最大的次数 # -*- coding:utf-8 -*- class Solution: def MoreThanHalfNum_Solution(self, numbers): # write code here ...
2021-08-22
0
400
题解 | #第一个只出现一次的字符#
找到重复字符串的位置 def FirstNotRepeatingChar(self, s): # write code here if len(s) == 0: return -1 temp_list = [] ...
2021-08-22
0
387
题解 | #数组中重复的数字#
使用临时变量存储 class Solution: def duplicate(self , numbers ): # write code here if len(numbers) == 0: return -1 te...
2021-08-22
0
379
题解 | #跳台阶#
递归 def jumpFloor(self, number): # write code here res = {} # 暂存 print(res) if number == 1: return 1 ...
2021-08-22
0
425
题解 | #替换空格#
分割字符串,重新拼接字符串 class Solution: def replaceSpace(self , s ): # write code here new_str = "" strs = s.split(" ...
2021-08-22
0
0