搜索结果
查询Tags标签: tr1,共有 9条记录-
1001 [USACO 2007 Jan S]Balanced Lineup 线段树-最大最小值
链接:https://ac.nowcoder.com/acm/contest/26896/1001来源:牛客网 题目描述For the daily milking, Farmer Johns N cows (1 ≤ N ≤ 100,000) always line up in the same order. One day Farmer John decides to organize a game of Ultimate Frisbee with some of t…
2022/8/7 23:25:56 人评论 次浏览 -
编译器版本太老使用unordered_map问题
好像说5.11还是5.17以上版本的dev可以直接在#include<bits/stdc++.h> 用unordered_map。 如果是像我的老大爷编译器一样说was not declared的, 就多一个#include<tr1/unordered_map>, 后面使用时前面加上tr1::库就行 eg. tr1::unordered_map<int,int>…
2022/8/4 23:23:05 人评论 次浏览 -
python环境下的quickfix安装
通过pip安装时报“microsoft visual c++ 14.0 is require”,辛辛苦苦安装了VC环境,接着报“test_std_tr1_shared_ptr.cpp(1): fatal error C1083: 无法打开包括文件: “tr1/memory”: No such file or directory”兜兜转转原来只需要找到whl文件,然后直接安装即可进入此…
2022/1/20 9:12:43 人评论 次浏览 -
python环境下的quickfix安装
通过pip安装时报“microsoft visual c++ 14.0 is require”,辛辛苦苦安装了VC环境,接着报“test_std_tr1_shared_ptr.cpp(1): fatal error C1083: 无法打开包括文件: “tr1/memory”: No such file or directory”兜兜转转原来只需要找到whl文件,然后直接安装即可进入此…
2022/1/20 9:12:43 人评论 次浏览 -
Effective C++读书笔记~9 杂项讨论
目录条款53:不要轻忽编译器警告小结条款54:让自己熟悉包括TR1在内的标准程序库小结条款55:让自己熟悉Boost小结 条款53:不要轻忽编译器警告 Pay attention to compiler warnings. 在C++,编译器作者通常对于将会发生的事情比程序员有更好的领悟。例如,下面的例子很常…
2021/12/9 11:16:42 人评论 次浏览 -
Effective C++读书笔记~9 杂项讨论
目录条款53:不要轻忽编译器警告小结条款54:让自己熟悉包括TR1在内的标准程序库小结条款55:让自己熟悉Boost小结 条款53:不要轻忽编译器警告 Pay attention to compiler warnings. 在C++,编译器作者通常对于将会发生的事情比程序员有更好的领悟。例如,下面的例子很常…
2021/12/9 11:16:42 人评论 次浏览 -
Effective C++ 笔记 —— Item 18: Make interfaces easy to use correctly and hard to use incorrectly.
Developing interfaces that are easy to use correctly and hard to use incorrectly requires that you consider the kinds of mistakes that clients might make. For example, suppose you’re designing the constructor for a class representing dates in time:cl…
2021/9/7 11:06:10 人评论 次浏览 -
Effective C++ 笔记 —— Item 18: Make interfaces easy to use correctly and hard to use incorrectly.
Developing interfaces that are easy to use correctly and hard to use incorrectly requires that you consider the kinds of mistakes that clients might make. For example, suppose you’re designing the constructor for a class representing dates in time:cl…
2021/9/7 11:06:10 人评论 次浏览 -
Effective C++ 详解条款15: 在资源管理类中提供对原始资源的访问
假期归来第一天!!!!学习起来up up up ღ( ・ᴗ・` )ღ比心 由条款13导入一个例子:使用智能指针如auto_ptr或 tr1: :shared ptr保存factory函数如createInvestment的调用结果: std::tr1::shared_ ptr<Investment> pInv (createInvestment()); //见条款13假设你希…
2021/5/6 22:28:39 人评论 次浏览