cchangcs
cchangcs
全部文章
分类
未归档(58)
题解(32)
归档
标签
去牛客网
登录
/
注册
cchangcs
Make Something Different!
全部文章
(共90篇)
【剑指offer】 平衡二叉树(python)
相关知识点: 一棵树是平衡二叉树,必须满足两个条件: 1、该二叉树首先是二叉搜索树,即当前节点的值大于左节点的值,并且当前节点的值大于右节点的值。 2、左子树和右子树的高度差的绝对值不大于1。 解题思路: 通过两个内置函数对二叉树进行判定,判断是否满足上述两个条件。 下面是示例代码: ...
2019-04-09
0
676
【剑指offer】 数据流中的中位数(python)
本文所学到的一些细节知识: 学到的知识点 1、在python类中定义类变量时, 在__init__()函数中,通过self.variable_name 定义 2、整数除以整数的结果为整数,如果想得到相除结果为 浮点数,则需要除以浮点数 self.l[length//2] + self.l[...
2019-03-30
0
805
【剑指offer】第一个只出现一次的字符位置(python)
在完成【剑指offer】试题 第一个只出现一次的字符位置 时,写了如下代码: class Solution: def FirstNotRepeatingChar(self, s): # write code here m = {} for ...
2019-03-30
0
447
LeetCode 888. Fair Candy Swap 解题(Python)
题目如下: Alice and Bob have candy bars of different sizes: A[i] is the size of the i-th bar of candy that Alice has, and B[j] is the size of the j-th ba...
2018-12-14
0
555
LeetCode 881. Boats to Save People解题(Python)
题目如下: The i-th person has weight people[i], and each boat can carry a maximum weight of limit. Each boat carries at most 2 people at the same tim...
2018-12-14
0
612
设置LeetCode Notebook中notes图片大小
本文主要介绍如何设置LeetCode Notebook中notes的图片大小。 将 ![](http://https://s3-lc-upload.s3.amazonaws.com/uploads/2018/08/02/shadow.png) 更改为 <img src="...
2018-12-01
0
501
CCF考试(Java)-最大的矩形
试题: 试题编号: 201312-3 试题名称: 最大的矩形 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 在横轴上放了n个相邻...
2018-03-16
0
602
CCF考试(Java)-ISBN号码
试题: 试题编号: 201312-2 试题名称: ISBN号码 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 每一本正式出...
2018-03-16
1
878
CCF考试(Java)-游戏
试题: 试题编号: 201712-2 试题名称: 游戏 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 有n个小朋友围成一圈玩游戏...
2018-03-12
0
584
CCF考试(Java)-最小差值
试题: 试题编号: 201712-1 试题名称: 最小差值 时间限制: 1.0s 内存限制: 256.0MB 问题描述: 问题描述 给定n个数,请找出其中...
2018-03-12
0
480
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页