码迷,mamicode.com
首页 >  
搜索关键字:stream    ( 10730个结果
Java8 使用 stream().filter()过滤List对象(查找符合条件的对象集合)
内容简介 本文主要说明在Java8及以上版本中,使用stream().filter()来过滤一个List对象,查找符合条件的对象集合。 List对象类(StudentInfo) public class StudentInfo implements Comparable<StudentInfo> { ...
分类:编程语言   时间:2021-02-18 13:24:06    阅读次数:0
高斯消元解异或线性方程组(高斯消元,模板)
题意 $a_$以及$b_i$都是$0/1$ 方法 异或运算可以看成是不进位的加法,因此直接高斯消元即可 代码 #include <iostream> #include <cstdio> #include <cstring> using namespace std; const int N = 110 ...
分类:其他好文   时间:2021-02-18 13:19:39    阅读次数:0
python加强
###about 将平日里遇到的一些实用、有意思的python代码收集起来,以备后用 ####python案例 # ex_1.py # 生成随机字符 import random, string def GenPassword(length): numOfNum = random.randint(1, ...
分类:编程语言   时间:2021-02-18 13:14:12    阅读次数:0
谷粒 | 12 |easyExcel使用
一、引入easyexcel依赖 <!--easyExcel依赖--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> </dependency> <dependency> <groupId>org ...
分类:其他好文   时间:2021-02-15 12:10:41    阅读次数:0
HTTP Content Type | HTTP Media Type
HTTP Content Type 文件扩展名 Content-Type 文件扩展名 Content-Type .* application/octet-stream .tif image/tiff .001 application/x-001 .301 application/x-301 .323 ...
分类:Web程序   时间:2021-02-10 13:19:44    阅读次数:0
IO流 - 未完 - 管道流和筛选流没写
IO流 JAVA流式输入/输出原理 ? 在Java程序中,对于数据的输入/输出操作以“流”(Stream)方式进行;J2SDK提供了各种各样的“流” 类,用以获取不同种类的数据:程序中通过标准的方法输入或输出数据。 读入写出 流是用来读写数据的 java有一个类叫File,它封装的是文件的文件名,只 ...
分类:其他好文   时间:2021-02-09 12:26:46    阅读次数:0
stream流,转set和map
package com.mayikt.stream; import com.mayikt.entity.UserEntity; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.u ...
分类:其他好文   时间:2021-02-08 12:35:00    阅读次数:0
Trees on the level UVA - 122
Trees are fundamental in many branches of computer science (Pun definitely intended). Current stateof-the art parallel computers such as Thinking Mach ...
分类:其他好文   时间:2021-02-08 12:29:55    阅读次数:0
离散化
1 #include<iostream> 2 #include<cstdio> 3 #include<cstdlib> 4 #include<algorithm> 5 using namespace std; 6 7 int n,tot,a[1010],c[1010]; 8 9 int main() ...
分类:其他好文   时间:2021-02-06 12:13:59    阅读次数:0
MobileNetV2-SSDLite
参考: https://ai.googleblog.com/2018/04/mobilenetv2-next-generation-of-on.html https://heartbeat.fritz.ai/real-time-object-detection-using-ssd-mobilenet ...
分类:Web程序   时间:2021-02-06 11:59:11    阅读次数:0
10730条   上一页 1 ... 11 12 13 14 15 ... 1073 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!