码迷,mamicode.com
首页 >  
搜索关键字:samll note    ( 7370个结果
demo03_赋值运算符
demo03_赋值运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 21 b = 10 c = 0 c = a + b print("1. ...
分类:其他好文   时间:2020-01-31 14:22:16    阅读次数:72
[LC] 767. Reorganize String
Given a string S, check if the letters can be rearranged so that two characters that are adjacent to each other are not the same. If possible, output ...
分类:其他好文   时间:2020-01-31 14:18:49    阅读次数:60
demo04_位运算符
demo04_位运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 60 # 60 = 0011 1100 b = 13 # 13 = 00 ...
分类:其他好文   时间:2020-01-31 14:16:57    阅读次数:75
demo02_比较运算符
demo02_比较运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 21 b = 10 c = 0 f = 'abc' g = 'abc' ...
分类:其他好文   时间:2020-01-31 12:18:23    阅读次数:83
在一个div的右下角再添加一个div的方法
想完成如下效果: 代码如下: <div id="header"> <div id="logo"> </div> <div id="note"> <p>右下角的内容</p> </div> </div> css代码: #header { height: 100px; width: 1600px; bac ...
分类:其他好文   时间:2020-01-30 14:23:11    阅读次数:80
[LC] 270. Closest Binary Search Tree Value
Given a non-empty binary search tree and a target value, find the value in the BST that is closest to the target. Note: Given target value is a floati ...
分类:其他好文   时间:2020-01-30 12:32:09    阅读次数:67
[Algorithm] 88. Merge Sorted Array
Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements initialized in nums1 and num ...
分类:其他好文   时间:2020-01-30 09:33:10    阅读次数:72
剑指offer系列——6.旋转数组的最小数字
Q:把一个数组最开始的若干个元素搬到数组的末尾,我们称之为数组的旋转。 输入一个非递减排序的数组的一个旋转,输出旋转数组的最小元素。 例如数组{3,4,5,1,2}为{1,2,3,4,5}的一个旋转,该数组的最小值为1。 NOTE:给出的所有元素都大于0,若数组大小为0,请返回0。 C:时间限制:C ...
分类:编程语言   时间:2020-01-28 23:19:10    阅读次数:79
demo01_算术运算符
算术运算符 ''' @note: https://www.runoob.com/python/python-operators.html @author: xilh @since: 20200124 ''' a = 21 b = 10 c = 0 c = a + b print("a + b 的值为 ...
分类:其他好文   时间:2020-01-28 14:14:04    阅读次数:77
AVFrame 解析
AVFrame: 1)存储解码后的音频数据或视频数据. 2)AVFrame必须由av_frame_alloc() 来创建(Note:这只是用来创建AVFrame自身的内存空间,AVFrame结构体中的数据缓冲区,必须由其他方法来管理) 3)AVFrame必须由av_frame_free来释放 4)A ...
分类:其他好文   时间:2020-01-26 23:48:45    阅读次数:114
7370条   上一页 1 ... 49 50 51 52 53 ... 737 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!