码迷,mamicode.com
首页 >  
搜索关键字:lang    ( 21197个结果
最小生成树 : Kruskal
https://www.acwing.com/problem/content/1143/ \(裸题\) #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); c ...
分类:其他好文   时间:2021-02-17 14:58:39    阅读次数:0
实现两个INPUT同步输入
<script type="text/javascript"> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> 不同na ...
分类:其他好文   时间:2021-02-17 14:18:00    阅读次数:0
倒计时案例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:其他好文   时间:2021-02-17 14:16:56    阅读次数:0
js 对象高级
对象的创建模式 Object构造函数模式 var obj = {}; obj.name = 'Tom' obj.setName = function(name){this.name=name} 对象字面量模式 var obj = { name : 'Tom', setName : function( ...
分类:Web程序   时间:2021-02-16 12:40:05    阅读次数:0
「Apache Groovy」- java.lang.NoSuchMethodError: x.x.x: method <init>()V not found @20210212
问题描述 在执行 Groovy 代码中,产生如下错误: ava.lang.NoSuchMethodError: com.lispstudio.model.TeamLispstudio: method <init>()V not found 问题原因 在继承父类之后,没调用父类的构造函数。 解决方法 ...
分类:编程语言   时间:2021-02-16 12:16:16    阅读次数:0
Vue练习
###目录结构 ├── build // 构建相关 ├── config // 配置相关 ├── src // 源代码 │ ├── api // 所有请求 │ ├── assets // 主题 字体等静态资源 │ ├── components // 全局公用组件 │ ├── directive // ...
分类:其他好文   时间:2021-02-16 12:08:51    阅读次数:0
1342. Number of Steps to Reduce a Number to Zero (E)
Number of Steps to Reduce a Number to Zero (E) 题目 Given a non-negative integer num, return the number of steps to reduce it to zero. If the current nu ...
分类:其他好文   时间:2021-02-16 12:04:19    阅读次数:0
Golang种结构体的5种初始化方式
package main import ( "fmt" ) type Cat struct{ Name string Age int } func main(){ // 第一种方式,先声明再初始化 var cat1 Cat cat1.Name = "cat1" cat1.Age = 1 fmt.Pr ...
分类:其他好文   时间:2021-02-16 12:03:03    阅读次数:0
java反射
创建一个Person类 创建一个Person类 public class Person{ private String name; private Integer age; public String getName(){ return name; } public void setName(Str ...
分类:编程语言   时间:2021-02-16 12:01:09    阅读次数:0
Codeforces 982 D. Shark
本题链接:CF982 D. Shark 题目大意 给定$n$个数,定义一个分度值$k$:将数组中小于$k$的连续段找出来,要求每段的长度都相等,在此前提下找出能让连续小于分度值$k$的段数最多的$k$,如果还有多解,则输出最小的$k$. 数据范围: \(1 \leq n \leq 10^5\) \( ...
分类:其他好文   时间:2021-02-15 12:44:25    阅读次数:0
21197条   上一页 1 ... 50 51 52 53 54 ... 2120 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!