法拉利201903231900848
法拉利201903231900848
全部文章
题解
学习笔记(9)
读书笔记(1)
资源(1)
归档
标签
去牛客网
登录
/
注册
法拉利201903231900848的博客
Talk is cheap. Show me the code.
全部文章
/ 题解
(共75篇)
在行列都排好序的矩阵中找指定的数
#include <bits/stdc++.h> using namespace std; int main(){ int N,M,K; ci...
2019-08-31
1
1007
链式A+B
# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # &...
链表
2019-08-30
0
899
链表分割
/* struct ListNode { int val; struct ListNode *next; ...
链表
2019-08-30
0
908
访问单个节点的删除
# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # &...
链表
2019-08-30
0
1160
链表中倒数第k个结点
# -*- coding:utf-8 -*- # class ListNode: # def __init__(self, x): # &...
链表
双指针
2019-08-30
3
1108
翻转子串
# -*- coding:utf-8 -*- class ReverseEqual: def checkReverseEqual(self, s1, s2):  ...
2019-08-30
4
1000
清除行列
# -*- coding:utf-8 -*- class Clearer: def clearZero(self, mat, n): ...
2019-08-29
1
892
整形数组合并
while True: try: n1=int(input()) &nbs...
2019-08-27
1
1015
计算字符串的相似度
#Mark一下 def editDistance(str1,str2): len1,len2 = len(str1) +1,len(str2) +1 dp...
2019-08-26
1
912
超长正整数相加
#include <stdio.h> #include <string.h> int main(){ char addend[1000]; ...
2019-08-26
0
1214
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页