C++ Primer学习总结 第5章 语句 第5章 语句
python 贪婪 非贪婪 匹配 python re模块还是需要重新学习。 python readline 和 readlines(), readline() , read() 三者之间的区别,以前一直都不清楚,现在搞清楚是怎么回事了...
FFmpeg源代码简单分析:av_find_decoder()和av_find_encoder() 本文记录FFmpeg的两个API函数:avcodec_find_encoder()和avcodec_find_decoder()。avcodec_find_encoder()用于查找FFmpeg的编码器,avcodec_find_decoder()用于...
hdu1394Minimum Inversion Number树状数组求逆序对水题 //ans[i]=ans[i-1](n1)-2*num[i]//num[i]为输入时的数据//ans[i]为m=i时的逆序数//用树状数组求ans[0]的逆序对#include<iostream>#include<cstdio>#incl...
HDU1811Rank of Tetris(并查集+拓扑排序) Rank of TetrisTime Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5683Accepted Submission(s): 1622Prob
LeetCode First Missing Positive Given an unsorted integer array, find the first missing positive integer.For example,Given[1,2,0]return3,and[3,4,-1,1]return2.Your algorithm should ru
POJ3321---Apple Tree(树状数组) DescriptionThere is an apple tree outside of kaka’s house. Every autumn, a lot of apples will grow in the tree. Kaka likes appl...
C++ Primer学习总结 第3章 字符串,向量和数组 第3章 字符串,向量和数组1.如何用string读取一整行内容?用getline(cin,s)即可. 当然getline()也可以用来作为while循环读取输入的判断条件.2.string与字符串字...
java的参数传递与内存分配问题 本文可作为北京尚学堂java课程的学习笔记。看下面这段代码。class BirthDate { private int day; private int month; private int...
[经典面试题]二叉树宽度 (1)二叉树最大宽度 /*--------------------------------------------- * 日期:2015-03-07 * 作者:SJF0115 * 题...