题目描述 Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letter…
分类:LeetCode
力扣(LeetCode)933
题目地址:https://leetcode-cn.com/probl…题目描述:写一个 RecentCounter 类来计算最近的请求。 它只有一个方法:ping(int t),其中 t 代表以毫秒为单位的某…
Longest Palindromic Substring
转载请注明出处: http://egoistk21.xyz/2016/09/23/Longest Palindromic Substring/ 最长回文字符子串 给定一个字符串S,找出S中最长的回文字符子串。 一开始我想…
[LeetCode] Construct Binary Tree from Inorder and Postorder Traversal
链接:https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal/description/ 难度:Me…
LeetCode算法题-Reverse String(Java实现)
这是悦乐书的第205次更新,第217篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第73题(顺位题号是344)。编写一个以字符串作为输入并返回字符串的函数。例如: 输入:“hello” 输出…
Leetcode102——Binary Tree Level Order Traversal
文章作者:Tyan 博客:noahsnail.com | CSDN | 简书 1. 问题描述 Given a binary tree, return the level o…
8. String to Integer (atoi)
8. String to Integer (atoi) 题目 Implement atoi to convert a string to an integer. Hint: Carefully consider all …
[LeetCode] Transpose File 转置文件
Given a text file file.txt, transpose its content. You may assume that each row has the same numbe…
LeetCode | Spiral Matrix II
题目: Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral or…
归并排序求逆序对
归并排序 归并排序是我们最常使用的排序算法之一,作用是将两个或两个以上的有序数组合并成为一个新的数组,主要使用的是分治和递归的思想; 步骤 将数组分为等长的两部分,然后合并成一个新的数组,照这个思想对两半部分分别进行递归…
[剑指offer] 顺时针打印矩阵
题目描述 输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字,例如,如果输入如下矩阵: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 则依次打印出数字1,2,3,4,8,12,1…
二刷98. Validate Binary Search Tree
Medium Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is defined as fo…