腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
首页
学习
活动
专区
工具
TVP
最新优惠活动
返回腾讯云官网
leetcode_solutions
专栏成员
举报
59
文章
40293
阅读量
18
订阅数
订阅专栏
申请加入专栏
全部文章(59)
编程算法(38)
input(4)
integer(4)
java(3)
hashmap(3)
numbers(3)
sum(3)
翻译(3)
node.js(2)
数据库(2)
sql(2)
map(2)
pascal(2)
spring(1)
容器(1)
存储(1)
jvm(1)
二叉树(1)
add(1)
algorithm(1)
arraylist(1)
bit(1)
character(1)
count(1)
digits(1)
factorial(1)
function(1)
implementation(1)
it(1)
line(1)
lowercase(1)
palindrome(1)
range(1)
return(1)
row(1)
space(1)
spaces(1)
string(1)
target(1)
time(1)
uppercase(1)
队列(1)
设计(1)
算法(1)
搜索文章
搜索
搜索
关闭
94. Binary Tree Inorder Traversal
编程算法
根据中序遍历的顺序,对于任一结点,优先访问其左孩子,而左孩子结点又可以看做一根结点,然后继续访问其左孩子结点,直到遇到左孩子结点为空的结点才进行访问,然后按照相同的规则访问其 右子树。因此处理过程如下:
yesr
2020-05-04
280
0
数据库事务的四种隔离级别
数据库
sql
spring
这是数据库最高的隔离级别,这种级别下,事务“串行化顺序执行”,也就是一个一个排队执行。
yesr
2019-04-22
7.4K
0
238. Product of Array Except Self
编程算法
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Oct31_Dec25/article/details/88976382
yesr
2019-04-19
395
0
26. Remove Duplicates from Sorted Array
编程算法
Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length.
yesr
2019-03-20
328
0
深入理解String,StringBuilder,StringBuffer
编程算法
从上面的三个方法可以看出,无论是subString、concat还是replace操作都不是在原有的字符串上进行的,而是重新生成了一个新的字符串对象。也就是说进行这些操作后,最原始的字符串并没有被改变。
yesr
2019-03-20
511
0
Letter Combinations of a Phone Number
编程算法
Given a digit string, return all possible letter combinations that the number could represent. A mapping of digit to letters (just like on the telephone buttons) is given below.
yesr
2019-03-14
462
0
【每天一道编程系列-2018.2.18】(Ans)
编程算法
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
yesr
2019-03-14
290
0
【每天一道编程系列-2018.3.1】(Ans)
Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999.
yesr
2019-03-14
349
0
【每天一道编程系列-2018.2.28】(Ans)
容器
Given n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water. Note: You may not slant the container.
yesr
2019-03-14
310
0
【每天一道编程系列-2018.2.27】(Ans)
编程算法
Implement regular expression matching with support for ‘.’ and ‘*’. ‘.’ Matches any single character. ‘*’ Matches zero or more of the preceding element.The matching should cover the entire input string (not partial). The function prototype should be: bool isMatch(const char *s, const char *p) Some examples: isMatch(“aa”,”a”) → false isMatch(“aa”,”aa”) → true isMatch(“aaa”,”aa”) → false isMatch(“aa”, “a*”) → true isMatch(“aa”, “.*”) → true isMatch(“ab”, “.*”) → true isMatch(“aab”, “c*a*b”) → true
yesr
2019-03-14
258
0
【每天一道编程系列-2018.2.22】(Ans)
input
integer
it
string
Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases. Notes: It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front.
yesr
2019-03-14
313
0
167. Two Sum II - Input array is sorted(双向指针)
编程算法
Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number.
yesr
2019-03-14
354
0
119. Pascal's Triangle II(杨辉三角简单变形)
java
pascal
return
row
sum
Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle.
yesr
2019-03-14
709
0
【每天一道编程系列-2018.2.17】(Ans)
编程算法
Write a program that outputs the number of an integer input in the opposite order.
yesr
2019-03-14
393
0
Sum
编程算法
【题目描述】 Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c +
yesr
2019-03-14
565
0
深入理解字符串常量池
jvm
编程算法
java
我们知道字符串的分配和其他对象分配一样,是需要消耗高昂的时间和空间的,而且字符串我们使用的非常多。JVM为了提高性能和减少内存的开销,在实例化字符串的时候进行了一些优化:使用字符串常量池。
yesr
2019-03-14
516
0
118. Pascal's Triangle(暴力求解法)
java
arraylist
integer
pascal
sum
Given a non-negative integer numRows, generate the first numRows of Pascal's triangle.
yesr
2019-03-14
462
0
3. Longest Substring Without Repeating Characters(HashSet + 双指针)
编程算法
Given a string, find the length of the longest substring without repeating characters.
yesr
2019-03-14
315
0
7. Reverse Integer(注意越界问题)
编程算法
Given a 32-bit signed integer, reverse digits of an integer.
yesr
2019-03-14
1.1K
0
B树与B+树的区别
node.js
数据库
sql
二叉树
我们先来看看Stack Overflow上面是怎么解释的(没有梯子的,博主已经把回答copy下来了):
yesr
2019-03-14
4.7K
0
点击加载更多
社区活动
【纪录片】中国数据库前世今生
穿越半个世纪,探寻中国数据库50年的发展历程
立即查看
Python精品学习库
代码在线跑,知识轻松学
立即查看
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
立即体验
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
立即查看
领券
问题归档
专栏文章
快讯文章归档
关键词归档
开发者手册归档
开发者手册 Section 归档