119. Pascal's Triangle II Easy Easy Easy Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. Note that the r ...
分类:
其他好文 时间:
2019-10-05 10:59:45
阅读次数:
95
【问题描述】 输入一个链表,输出该链表中倒数第k个结点。 时间限制:1秒 空间限制:32768K 【AC代码】 p先走k步,q再走,这样p和q的距离就是k了,等p走到尽头,那么q自然就到了倒数第k个位置了。 1 /* 2 public class ListNode { 3 int val; 4 Li ...
分类:
其他好文 时间:
2019-10-04 18:49:19
阅读次数:
71
import java.lang.StringBuilder /** * 179. Largest Number * https://leetcode.com/problems/largest-number/description/ * https://www.cnblogs.com/grandya... ...
分类:
其他好文 时间:
2019-10-01 09:13:20
阅读次数:
79
题目链接 :http://acm.hdu.edu.cn/showproblem.php?pid=1506 Problem Description A histogram is a polygon composed of a sequence of rectangles aligned at a co ...
分类:
其他好文 时间:
2019-09-28 12:43:03
阅读次数:
68
链接: https://vjudge.net/problem/HDU 1238 题意: You are given a number of case sensitive strings of alphabetic characters, find the largest string X, such ...
分类:
其他好文 时间:
2019-09-26 21:42:17
阅读次数:
94
84题和85五题 基本是一样的,先说84题 84 柱状图中最大的矩形( Largest Rectangle in Histogram) 思路很简单,通过循环,分别判断第 i 个柱子能够延展的长度len,最后把len heights[i] 就是延展开的面积,最后做比对,得出最大。 这个方法效率不是很高 ...
分类:
其他好文 时间:
2019-09-23 22:29:39
阅读次数:
91
1丶 新建模型,提示前言中不,报错信息如下 Message: 前言中不允许有内容。 at org.flowable.bpmn.converter.BpmnXMLConverter.convertToBpmnModel(BpmnXMLConverter.java:275) at org.flowabl ...
分类:
其他好文 时间:
2019-09-23 15:10:02
阅读次数:
170
题意: 给出两个字符串a,b,求一个字符串,这个字符串是a和b的子串, 且只在a,b中出现一次,要求输出这个字符串的最小长度。 题解: 将a串放入后缀自动机中,然后记录一下每个节点对应的子串出现的次数 然后把b串取自动机中匹配 然后判断一下 1 #include <set> 2 #include < ...
分类:
其他好文 时间:
2019-09-22 12:50:24
阅读次数:
93
①中文题目 在一个给定的数组nums中,总是存在一个最大元素 。 查找数组中的最大元素是否至少是数组中每个其他数字的两倍。 如果是,则返回最大元素的索引,否则返回-1。 示例 1: 输入: nums = [3, 6, 1, 0]输出: 1解释: 6是最大的整数, 对于数组中的其他整数,6大于数组中其 ...
分类:
其他好文 时间:
2019-09-16 10:29:02
阅读次数:
90
Given a 2D binary matrix filled with 0's and 1's,find the largest square containing only 1's and return its area. Input: 1 0 1 0 01 0 1 1 11 1 1 1 11 ...
分类:
其他好文 时间:
2019-09-11 20:11:23
阅读次数:
106