上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 41 下一页
摘要: #include<iostream> #include<map> #include<vector> #include<algorithm> using namespace std; int main() { map<string, vector<int>> mmap; int humannum, c 阅读全文
posted @ 2021-07-22 18:47 小帆敲代码 阅读(23) 评论(0) 推荐(0) 编辑
摘要: set说明 关于set,必须说明的是set关联式容器。set作为一个容器也是用来存储同一数据类型的数据类型,并且能从一个数据集合中取出数据,在set中每个元素的值都唯一,而且系统能根据元素的值自动进行排序。应该注意的是set中数元素的值不能直接被改变。C++ STL中标准关联容器set, multi 阅读全文
posted @ 2021-07-20 20:47 小帆敲代码 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ##int转string to_string函数 ##string转int 标准库中atoi函数 对于其他类型也都有相应的标准库函数,比如浮点型atof(),long型atol()等等 ##参考 https://www.cnblogs.com/smile233/p/8379802.html 阅读全文
posted @ 2021-07-20 20:17 小帆敲代码 阅读(57) 评论(0) 推荐(0) 编辑
摘要: %f代表单精度浮点型数据(float),%lf代表双精度浮点型数据(double)。 阅读全文
posted @ 2021-07-20 20:15 小帆敲代码 阅读(3201) 评论(0) 推荐(0) 编辑
摘要: ##代码 #include<iostream> #include <string> using namespace std; int main() { string str("cvicses"); string s(str.rbegin(),str.rend()); cout << s <<endl 阅读全文
posted @ 2021-07-20 20:13 小帆敲代码 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 如果在程序中要使用 printf 或者 scanf,那么就必须要包含头文件 stdio.h。因为这两个函数就是包含在该头文件中的。 ##常用的输出控制符 |控制符 |说明| |--|--| |%d |按十进制整型数据的实际长度输出。| |%ld |输出长整型数据。| |%md |m 为指定的输出字段 阅读全文
posted @ 2021-07-20 19:31 小帆敲代码 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: iostream 输入输出是由iostream库提供的 iostream库定义了以下三个标准流对象: cin,表示标准输入(standard input)的istream类对象。cin使我们可以从设备读入数据。 cout,表示标准输出(standard output)的ostream类对象。cout 阅读全文
posted @ 2021-07-20 18:16 小帆敲代码 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/fu6543210/article/details/80407911 https://blog.csdn.net/fu6543210/article/details/80408704 什么是反卷积 反卷积的数学含义,通过反卷积可以将通过卷积的输出信号 阅读全文
posted @ 2021-07-19 13:05 小帆敲代码 阅读(438) 评论(0) 推荐(0) 编辑
摘要: ##创建WebService ##编写webService代码 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namesp 阅读全文
posted @ 2021-06-01 19:30 小帆敲代码 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 新增C2组件:移位运算 主要代码 public class Yiwei extends C2Component{ public Yiwei(String host, int port, String user, String pwd) { super(host, port, user, pwd,"Y 阅读全文
posted @ 2021-05-19 10:07 小帆敲代码 阅读(500) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 41 下一页