在打包我自己的angular项目时出现了错误 ERROR in Child compilation failed:undefinedERROR in budgets, maximum exceeded for F:/angular/demo/mjcomm/src/app/editor/editor. ...
分类:
其他好文 时间:
2020-01-02 15:24:58
阅读次数:
354
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-sca ...
分类:
Web程序 时间:
2019-12-31 18:56:49
阅读次数:
239
题目描述:给一个二叉树,返回该二叉树的最大深度 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root nod ...
分类:
其他好文 时间:
2019-12-30 09:21:14
阅读次数:
77
树 基本概念 1.最多一个先驱 但可能有多个后继 表示具有层次的分支关系 2.Siblings(兄弟): nodes share the same parent Degree(树的扇出) of a tree: the maximum number of its node. 3.深度为最大层数 第i层 ...
分类:
其他好文 时间:
2019-12-29 22:14:09
阅读次数:
85
1007 Maximum Subsequence Sum (25分) Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be { N?i??, N?i ...
分类:
其他好文 时间:
2019-12-26 17:53:37
阅读次数:
90
static final int DEFAULT_INITIAL_CAPACITY = 1 << 4; // 16 默认初始容量 16 static final int MAXIMUM_CAPACITY = 1 << 30; //最大容量 2的30次方 static final float DEFA ...
分类:
其他好文 时间:
2019-12-22 18:44:23
阅读次数:
97
Description Find the contiguous subarray within an array (containing at least one number) which has the largest product. Description Description Find ...
分类:
其他好文 时间:
2019-12-21 22:54:06
阅读次数:
97
Given a sequence of K integers { N?1??, N?2??, ..., N?K?? }. A continuous subsequence is defined to be { N?i??, N?i+1??, ..., N?j?? } where 1. The Max ...
分类:
其他好文 时间:
2019-12-21 22:45:36
阅读次数:
72
Description Description Given an array of integers, find a contiguous subarray which has the largest sum. The subarray should contain at least one num ...
分类:
其他好文 时间:
2019-12-21 22:17:06
阅读次数:
99
onresize的定义方式 一、直接在html中定义 如<body onresize="doResize()"/> 二、直接给onresize赋值 可以给window和body的onresize赋值 如window.onresize=function(){},document.body.onresi ...