Another OCD Patient Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 2259 Accepted Submission(s) ...
分类:
其他好文 时间:
2020-05-12 18:40:48
阅读次数:
56
This time you are asked to tell the difference between the lowest grade of all the male students and the highest grade of all the female students. Inp ...
分类:
其他好文 时间:
2020-05-12 15:19:35
阅读次数:
71
Week 2 3.5.2020 Overview This week, we have mainly learned two parts: 1. How to match the same feature points in two images from different viewpoints. ...
分类:
其他好文 时间:
2020-05-12 00:03:20
阅读次数:
112
《Head First设计模式》看了一部分才对设计模式有了初步的了解:它其实是开发过程中很多前人的经验与智慧的总结,帮助你在开发时采取更好的方式去设计各个类、方法、以及它们之间的调用、实现方式,让代码保持灵活性的同时又能更好地复用。基于学过一块知识一定要用文字记录、总结、巩固,而不是走马观花的原则, ...
分类:
编程语言 时间:
2020-05-11 19:03:34
阅读次数:
61
(1)openresty的安装参考上一篇博客https://www.cnblogs.com/first-semon/p/12858959.html openresty的安装路径默认实在/usr/local/openresty下 (2)在/usr/local/openresty/nginx/conf/ ...
分类:
其他好文 时间:
2020-05-11 18:36:41
阅读次数:
77
实例 一个简单的 HTML 表单,包含两个文本输入框和一个提交按钮: <form action="form_action.asp" method="get"> First name: <input type="text" name="fname" /> Last name: <input type= ...
分类:
Web程序 时间:
2020-05-11 15:20:15
阅读次数:
191
Problem Statement Problem Vestigium means "trace" in Latin. In this problem we work with Latin squares and matrix traces. The trace of a square matrix ...
分类:
其他好文 时间:
2020-05-11 09:15:09
阅读次数:
68
1.Pair 1.1 Pair定义: namespace std { template<class _T1, class _T2> struct pair { _T1 first; _T2 second; } } 两个成员都是public。 实现一个泛型类函数模板,将一个pair写入一个stream ...
分类:
编程语言 时间:
2020-05-10 23:31:30
阅读次数:
133
大家都知道高并发分布式组件的重要性,而且如果要进大厂,这些技术不可或缺。但这些技术的学习难点在于,大多数项目里的分布式组件,都是搭建在Linux系统上,在自己的windows机器上很难搭建开发环境,如果无法搭建开发环境,就无法实际操练,而单靠背理论题,是无法通过面试的。 比如搭建Redis环境,或许 ...
计算机网络(4) ICMP协议 ICMP Internet控制消息协议ICMP(Internet Control Message Protocol)是网络层的一个重要协议。ICMP协议用来 在网络设备间传递各种差错和控制信息,并对于收集各种网络信息、诊断和排除各种网络故障等方面起着至关重要的作用 。 ...
分类:
其他好文 时间:
2020-05-10 19:34:33
阅读次数:
113