码迷,mamicode.com
首页 >  
搜索关键字:map hashmap linkedhashmap map.entry collections 可变参数    ( 41027个结果
JS算法题
求字符串出现次数最多字符 let str = "aaabbccccddddd" function longSre(str) { let zifu; let max = 0; let arr = str.split('') let map = new Map() for (let i = 0; i < ...
分类:编程语言   时间:2021-04-13 11:42:07    阅读次数:0
计应193第一组个人流程——任文凯
import java.util.HashMap; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; public class Station { private String name; ...
分类:其他好文   时间:2021-04-12 12:54:28    阅读次数:0
计应191(西)第六组 靳琳琳
四则运算代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ClassLibrary1{ public ...
分类:其他好文   时间:2021-04-12 12:51:16    阅读次数:0
个人项目 计应192(西)-4组-赵会涛
公交站点显示 using System.Collections.Generic; usinSystem.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; usi ...
分类:其他好文   时间:2021-04-12 12:40:32    阅读次数:0
XML文件操作
XML文件操作 实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XMLDemo { class Student { public string St ...
分类:其他好文   时间:2021-04-12 12:30:15    阅读次数:0
Elasticsearchdump 数据导入/导出
参考下面的连接 https://www.cnblogs.com/mojita/p/12011800.html ...
分类:其他好文   时间:2021-04-12 12:18:59    阅读次数:0
ncat-相关参数用法
ncat是nc的衍生版本,是附带在nmap软件包里面,下面是一些常见的ncat的用法 开启http代理 ncat -lvvv 8080 --proxy-type http --proxy-auth cntf:cntf ...
分类:其他好文   时间:2021-04-12 12:04:11    阅读次数:0
Unity InputSystem
最近迁移项目到UnityXR框架,发现UnityXR框架使用了新的输入系统(InputSystem)然后就学习了一下。 using System.Collections; using System.Collections.Generic; using UnityEngine; using Unity ...
分类:编程语言   时间:2021-04-10 13:33:21    阅读次数:0
ES6:高级数组函数,filter/map/reduce
filter :先看一下官方的解释: filter() 方法创建一个新的数组,新数组中的元素是通过检查指定数组中符合条件的所有元素。 注意: filter() 不会对空数组进行检测。 注意: filter() 不会改变原始数组。 其实这个已经写的很清楚了,就是,返回通过检查的元素,并且会创建一个新的 ...
分类:编程语言   时间:2021-04-10 13:25:14    阅读次数:0
HJ8-合并表记录
按照key值升序输出: #include<iostream> using namespace std; #include<map> int main() { map<int,int>m; int n; cin >> n; while(n--) { int a = 0, b = 0; cin >> a ...
分类:其他好文   时间:2021-04-10 13:21:54    阅读次数:0
41027条   上一页 1 ... 27 28 29 30 31 ... 4103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!