码迷,mamicode.com
首页 >  
搜索关键字:captures    ( 37个结果
Unique Snowflakes UVA - 11572 (离散化+尺取法)
Emily the entrepreneur has a cool business idea: packaging and selling snowflakes. She has devised a machine that captures snowflakes as they fall, an ...
分类:其他好文   时间:2019-01-23 15:39:14    阅读次数:167
C#字符串转二进制、二进制转字符串
最近公司要做一个操作日志的模块,如果将操作日志以字符串的形式存到后台数据库,非常浪费内存,不可取,特意写了字符串与二进制相互转换的函数。 1、字符串转二进制 1 private string StringToBinary(string str) 2 { 3 byte[] data = Encodin ...
分类:Windows程序   时间:2018-12-29 11:05:26    阅读次数:186
C++11 带来的新特性 (4)—— 匿名函数(Lambdas)
1 语法 Lambdas并不是新概念,在其它语言中已经烂大街了。直接进入主题,先看语法: captures:捕获参数。详细格式见下图。 | 格式 | 意义 | | | | | [] | 默认不捕获任何变量 | | [=] | 默认以值捕获所有变量 | | [&] | 默认以引用捕获所有变量 | | ...
分类:编程语言   时间:2018-11-26 22:01:58    阅读次数:296
11572 - Unique Snowflakes(贪心,两指针滑动保存子段最大长度)
Emily the entrepreneur has a cool business idea: packaging and selling snow?akes. She has devised a machine that captures snow?akes as they fall, and ...
分类:其他好文   时间:2018-07-31 19:31:37    阅读次数:204
C# 爬虫总结
static void Main(string[] args) { //WebRequest request = WebRequest.Create("http://www.cnblogs.com/mr-wuxiansheng/p/8353615.html"); //WebResponse resp ...
分类:Windows程序   时间:2018-02-01 14:43:07    阅读次数:213
lambda modern C++
Lambda expressions (since C++11) Syntax [ captures ] <tparams>(optional)(c++20) ( params ) specifiers(optional) exception attr -> ret { body } (1) [ c ...
分类:编程语言   时间:2017-10-03 19:43:27    阅读次数:200
opengl截图
从这里看的http://forums.codeguru.com/showthread.php?446641-How-can-I-output-an-image-generated-with-openGL-to-an-image-file-such-as-jpg ...
分类:其他好文   时间:2017-08-28 00:46:05    阅读次数:153
Unique Snowflakes(窗口滑动)
题目: Emily the entrepreneur has a cool business idea: packaging and selling snowflakes. She has devised a machine that captures snowflakes as they fall ...
分类:其他好文   时间:2017-08-03 22:15:26    阅读次数:185
Java抓屏程序代码
原文:http://www.open-open.com/code/view/1422262655200 ...
分类:编程语言   时间:2017-07-17 15:18:21    阅读次数:142
asm335x系列adc和触摸屏驱动(转)
An analog-to-digital converter (abbreviated ADC) is a device that uses sampling to convert a continuous quantity to a discrete time representation in ...
分类:其他好文   时间:2017-06-30 15:36:44    阅读次数:140
37条   上一页 1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!