c++
WilliamYuYuYu
菜鸟进化史,www.williamyu.top
展开
-
leetcode常用代码段
文章目录程序框架输入相关代码块数学操作switch语句块动态数组操作相关代码块类框架struct框架struct框架示例:自定义链表struct框架示例:构造函数和重载操作符引用传参功能段检测回文通信协议分析代码块程序框架#include <iostream>#include <string>#include <vector>#include <stack>#include <queue>#include <list>#原创 2020-06-21 10:07:01 · 539 阅读 · 0 评论 -
C++ STL常见用法
文章目录C++_STL容器stringvectorstackqueuedqueue(双端队列)queue(队列)priority_queuelist(双向链表)自定义链表-struct结构mapunordered_map树图算法重载运算符算法思想--递归C++_STL容器包括string类,顺序容器,容器适配器,关联容器string创建与初始化string a="adwdad";string a[4] = {"twenty", "thirty", "forty", "fifty"};原创 2020-06-21 10:06:00 · 407 阅读 · 0 评论 -
fopen和fopen_s
人脸检测OpenCVfopenfopen_s原创 2017-12-19 16:44:54 · 893 阅读 · 0 评论 -
VS项目文件夹越来越大!
解决方案: http://www.cnblogs.com/web100/archive/2012/12/21/vs2010-ipch-sdf.html http://blog.sina.com.cn/s/blog_4a0824490102vqal.html 目录e一定要小写转载 2018-01-31 12:43:47 · 7128 阅读 · 0 评论 -
C++参数传递(未完待续)
函数的参数和返回值都是基本类型的情况比较简单,略过。Part1:如果我想向一个函数传递数组int f1(int arr[], int n){ int total; for(int i=0; i<n; i++) total = total + arr[i]; return total;}int main(){ int coo[si原创 2018-01-31 14:45:23 · 332 阅读 · 0 评论 -
C++程序规范
思飞工作室2017-C/C++程序规范V 1.1[ 一 ] 版权声明1.Copyright版权声明团队声明/*================================================================================= * XXXXX.c -原创 2017-12-13 11:57:49 · 602 阅读 · 0 评论 -
三阶魔方还原的13种程序实现
三阶魔方还原的13种程序实现文末附程序下载src:http://tomas.rokicki.com/cubecontest/winners.html译者:WilliamYu Copyright © 2018 本文遵从GNU自由文档许可(Free Document License)条款,欢迎转载、散布。 翻译不足之处,万望指正,邮箱windmillyucong@163.com翻译 2018-02-05 00:30:17 · 25348 阅读 · 18 评论