码迷,mamicode.com
首页 >  
搜索关键字:rate    ( 3875个结果
《C++语言导学》小记
我看的这本是Bjarne Stroustrup写的,南开大学的杨巨峰和王刚译的。这本书不适合初学者看,我就是大概翻了翻其中感兴趣的章节。 这本书第14章的标题是“历史和兼容性”,这节内容我看了收获很深。p144-145的内容值得去看。 从中可以看出,ISO C和ISO C++是K&R C [Kern ...
分类:编程语言   时间:2020-01-21 23:13:46    阅读次数:75
rxjs-1介绍
RxJS is a library for composing asynchronous and event-based programs by using observable sequences. It provides one core type, the Observable, satell ...
分类:Web程序   时间:2020-01-21 16:08:30    阅读次数:133
Spring security - why does RoleVoter supports all classes and WebExpressionVoter only supports subclasses of FilterInvocation?
The secured object is an abstract representing whatever is secured. It may be a MethodInvocation in case of @Secured, @RolesAllowed, @PreFilter and @P ...
分类:编程语言   时间:2020-01-21 14:42:49    阅读次数:84
A - Cow Contest
A - Cow Contest N (1 ≤ N ≤ 100) cows, conveniently numbered 1..N, are participating in a programming contest. As we all know, some cows code better th ...
分类:其他好文   时间:2020-01-21 00:23:35    阅读次数:73
Spring Boot(3) H2数据库新增、修改、查询、删除
#Java#Spring#SpringBoot#H2#数据库#新增#修改#查询#删除# SpringBoot H2数据库新增、修改、查询、删除 视频讲解: https://www.bilibili.com/video/av83944935/ H2Application.java package co ...
分类:数据库   时间:2020-01-20 21:00:57    阅读次数:80
导出报表前端写法(带搜索条件)
//导出报表 $('#exportStatement').click(function () { var exportUrl = ctxPath + 'supplierOperate/exportStatement'; var startTime = $('#startTime').val(); i ...
分类:其他好文   时间:2020-01-20 16:19:05    阅读次数:119
RSA 非对称加解密 公私钥的生成
加密和签名使用不同的密钥对,签名密钥对的私钥用于签名,其对应的公钥用于验证签名。 加密密钥对的公钥用于加密,其对应的私钥用于解密。 1.生成密钥对 /** * 生成RSA随机密钥对(公钥和私钥) * @return */ public static Map<String, String> creat ...
分类:其他好文   时间:2020-01-20 09:50:50    阅读次数:108
ELK学习实验014:Nginx日志JSON格式收集
1 Kibana的显示配置 https://demo.elastic.co/app/kibana#/dashboard/welcome_dashboard 环境先处理干净 安装nginx和httpd-tools 2 使用压测工具产生日志 [root@node4 ~]# ab -n 100 -c 10 ...
分类:Web程序   时间:2020-01-19 15:20:03    阅读次数:121
机器学习-特征工程-Feature generation 和 Feature selection
概述:上节咱们说了特征工程是机器学习的一个核心内容。然后咱们已经学习了特征工程中的基础内容,分别是missing value handling和categorical data encoding的一些方法技巧。但是光会前面的一些内容,还不足以应付实际的工作中的很多情况,例如如果咱们的原始数据的fea ...
分类:其他好文   时间:2020-01-19 12:38:54    阅读次数:54
算法——堆排序
Heap.h 1 #include <algorithm> 2 #include <cassert> 3 4 using namespace std; 5 6 template<typename Item> 7 class MaxHeap{ 8 private: 9 Item *data; 10 i ...
分类:编程语言   时间:2020-01-19 09:51:43    阅读次数:103
3875条   上一页 1 ... 49 50 51 52 53 ... 388 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!