法拉利201903231900848
法拉利201903231900848
全部文章
题解
学习笔记(9)
读书笔记(1)
资源(1)
归档
标签
去牛客网
登录
/
注册
法拉利201903231900848的博客
Talk is cheap. Show me the code.
全部文章
/ 题解
(共75篇)
字符串排序
while True: try: s=input() &nbs...
2019-08-14
16
1645
字符串中找出连续最长的数字串
import re while True: try: s=input() &...
2019-08-13
2
996
计算n x m的棋盘格子的走法
#请编写一个函数(允许增加子函数),计算n x m的棋盘格子(n为横向的格子数,m为竖向的格子数)沿着各自边缘线从左上角走到右下角, #总共有多少种走法,要求不能走回头路,即:只能往右和往下走,不能往左和往上走。 #递归做法 def f(n,m):#从左上角到右下角,每次有两种走...
2019-08-13
39
2681
合法IP
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std...
2019-08-13
2
1163
密码强度等级
#python3:一直不对,暂时查不出问题在哪# while True: try: s=input() ...
2019-08-12
0
1526
求最大连续bit数
//C++:// #include <iostream> using namespace std; int main(){ int n; wh...
2019-08-12
3
980
字符串匹配
#include <iostream> #include <string> #include <map> using namespace std; int main(){ &nbs...
2019-08-11
4
825
计算逆波兰表达式的值
class Solution { public: /*逆波兰表达式的解释器一般是基于堆栈的。 解释过程一般是:操作数入栈;遇到操作符时,操作数出栈,求值,将结果入栈; &n...
2019-08-08
6
1048
序列化二叉树
/*请实现两个函数,分别用来序列化和反序列化二叉树*/ /* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right;...
2019-08-07
8
1108
把二叉树打印成多行
/* struct TreeNode { int val; struct TreeNode *left; ...
2019-08-07
0
783
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页