码迷,mamicode.com
首页 >  
搜索关键字:std    ( 41627个结果
terminate called after throwing an instance of 'std::cad_alloc' what():std::bad_alloc
内存不够: 1,确认系统已占用内存是否正常,排除数据量过大导致的问题,此时系统内存不足导致 std::bad_alloc 内存剩余: 1,确认接口调用时,调用和背调接口的的参数是否一致,动态库库调用中若不一致,编译链接通过,但执行可能导致 std::bad_alloc 2,确认是否使用vector, ...
分类:Windows程序   时间:2021-07-22 17:38:38    阅读次数:0
硬币问题
1. 问题描述 如果有三种硬币,2元,5元,7元,如何用最少的数量拼成27元? 2. 思路 (以后在更新吧) 3. 代码 // // Created by Administrator on 2021/7/20. // #ifndef C__TEST01_COINDP_HPP #define C__T ...
分类:其他好文   时间:2021-07-21 17:37:40    阅读次数:0
AcWing 3760. 最大剩余油量(树的最长路径)
题目 一个国家由 n 个城市组成,这 n 个城市由 n?1 条双向道路连接,呈一个树形结构。 每个城市都设有加油站,在第 i 个城市可以购买 wi 升汽油。 汽车在道路上行驶,毫无疑问也会消耗汽油,每条道路的具体耗油量也会给出。 现在,需要制定一条汽车的行进路线,从任意城市 s 出发,经过一条简单路 ...
分类:Windows程序   时间:2021-07-19 16:44:35    阅读次数:0
有意思的问题
#1.输出本身的代码 #include<cstdio> char s[]="#include<cstdio>%cchar s[]=%c%s%c;int main(){printf(s,10,34,s,34);}";int main(){printf(s,10,34,s,34);} ...
分类:其他好文   时间:2021-07-19 16:39:21    阅读次数:0
算法学习刷题记录-210717
3768. 字符串删减 - AcWing题库 思路 双指针的练习 C++代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; int main() { int n; string s; ...
分类:编程语言   时间:2021-07-19 16:34:51    阅读次数:0
FastAPI - most popular API framework in python
FastAPI https://fastapi.tiangolo.com/#performance FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based ...
分类:编程语言   时间:2021-07-16 17:45:01    阅读次数:0
c++ 结构体容器(vector)类型初始化及结构体vector指针传递
1 #include <iostream> 2 #include <stdio.h> 3 #include <vector> 4 5 6 struct BoxInfo 7 { 8 int label; 9 float score; 10 }; 11 12 13 int bbox_init(std:: ...
分类:编程语言   时间:2021-07-16 17:31:29    阅读次数:0
C语言动态分配内存及回收
用malloc和free;类似与C++的new和delete 代码: #include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { void* ptr = (void*)ma ...
分类:编程语言   时间:2021-07-15 18:57:44    阅读次数:0
在计算框架MindSpore中手动保存参数变量(Parameter 变量)—— from mindspore.train.serialization import save_checkpoint
本文参考内容: https://www.mindspore.cn/doc/programming_guide/zh-CN/r1.2/advanced_usage_of_checkpoint.html?highlight=save_checkpoint 有官方文档内容可知,我们对网络参数的保存不仅可以 ...
分类:其他好文   时间:2021-07-12 18:27:04    阅读次数:0
【例题2】数独游戏
【例题2】数独游戏 ? 题面 ? 题目描述 数独是一种传统益智游戏,你需要把 \(9\times 9\) 的数独补充完整,使得图中每行、每列、每个 \(3\times 3\) 的九宫格内数字 \(1\sim 9\) 均恰好出现一次。 请编写一个程序填写数独。 输入格式 输入包含多组测试用例。 每个测 ...
分类:其他好文   时间:2021-07-12 18:25:52    阅读次数:0
41627条   1 2 3 4 ... 4163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!