huanbing
huanbing
全部文章
分类
Django框架学习(3)
Java后端(10)
JVM(1)
LeetCode(6)
Linux自动化运维(13)
Python3学习(2)
ssh框架(9)
中间件(1)
微服务系列(2)
数据存储(1)
数据结构与算法整理(3)
未归档(48)
架构设计(2)
树莓派 Python 环境搭建(1)
源码部分(10)
移动端开发(2)
算法(9)
蓝桥杯(3)
归档
标签
去牛客网
登录
/
注册
huanbing的博客
全部文章
(共126篇)
python文件操作以及循环小结
Python中的文件使用建议使用 with open(filename, "r") as f: 的形式进行文件操作,如果忘记关闭文件指针的话,他会帮你自己关闭文件, 如果使用原来的方式 f = open(filename, "w") 打开文件,在程序终止的...
2018-12-15
0
580
tomcat启动错误Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/ofuns]];
起初遇到这个问题的时候是在实训(开发环境选择的是IDEA)的时候,检查了半天未果,上网搜索之后,说的也是各式各样,最后发现问题出在web.xml上面 在配置 filter 的 url-pattern 时候出现了问题, 配置 url-pattern 的几种方式: 在下面的书写...
2018-12-14
0
388
tomcat启动错误Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/ofuns]];
起初遇到这个问题的时候是在实训(开发环境选择的是IDEA)的时候,检查了半天未果,上网搜索之后,说的也是各式各样,最后发现问题出在web.xml上面 在配置 filter 的 url-pattern 时候出现了问题, 配置 url-pattern 的几种方式: 在下面的书写...
2018-12-14
0
331
Leetcode 12. Integer to Roman
初始化版本直接计算判断爆破,时间复杂度较高 优化后的版本https://blog.csdn.net/weixin_39459624/article/details/84592115 Roman numerals are represented by seven different symbols: ...
2018-11-28
0
540
LeetCode 12. Integer to Roman
LeetCode 12. Integer to Roman Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M. Symbol Value I 1 V 5 X 10 L 50 C 100...
2018-11-28
0
496
LeetCode 11. Container With Most Water
原题链接 11. Container With Most Water, Given n non-negative integers a1, a2, …, an , where each represents a point at coordinate (i, ai). n vertical line...
2018-11-20
0
455
LeetCode 9. Palindrome Number
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Input: 121 Output: t...
2018-11-20
0
408
LeetCode 8. String to Integer (atoi)
LeetCode 8.String to Integer (atoi) Implement atoi which converts a string to an integer. The function first discards as many whitespace characters a...
2018-11-14
0
695
LeetCode 6. ZigZag Conversion
/* The string “PAYPALISHIRING” is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed fo...
2018-11-12
0
357
LeetCode 5. Longest Palindromic Substring
/* Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: Input: “babad” Out...
2018-11-11
0
420
首页
上一页
4
5
6
7
8
9
10
11
12
13
下一页
末页