码迷,mamicode.com
首页 >  
搜索关键字:char const p    ( 57984个结果
C++ STL容器 —— deque 用法详解
C++ STL容器 —— deque 用法详解 头文件:# include < deque >动态双向数组, 与vector的区别vector头部被封住了, 不能直接进行增删操作deque两端都可以进行增删操作具体表现在常用函数和 emplace 系列函数里面 构造函数 deque <int> dv ...
分类:编程语言   时间:2021-06-02 12:59:29    阅读次数:0
3574. 乘积数量
思路 思路同k倍区间。 前缀积得到每个点的正负。枚举右端点$r$,统计满足$s[r]$和$s[l-1]$同号的左端点$l$的数目,$s[r]$和$s[l-1]$同号则$s[l \sim r]$为正。$s[l \sim r]$为负的区间数量同理。 const int N=2e5+10; int a[N ...
分类:其他好文   时间:2021-06-02 12:57:18    阅读次数:0
c语言 9-5
1、 #include <stdio.h> int str_char(char x[], int key) { int len = 0; while(x[len]) len++; int i; for(i = 0; i < len; i++) { if(x[i] == key) return i; ...
分类:编程语言   时间:2021-06-02 12:49:19    阅读次数:0
c语言 9-3
1、 #include <stdio.h> #define NUMBER 5 int main(void) { char str[NUMBER][128]; int i; for(i = 0; i < NUMBER; i++) { printf("str[%d] = ", i); scanf("%s ...
分类:编程语言   时间:2021-06-02 12:43:03    阅读次数:0
实验五
任务一#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a ...
分类:其他好文   时间:2021-06-02 12:17:51    阅读次数:0
CSSCAN 输出的处理
1.背景知识 有些情况下我们需要跨字符集进行表的迁移。 比如 ZHS16GBK->AL32UTF8 在存储中文时两个字符集有如下差异 |字符集| 中文字符占用字节 |以汉字存储性别 | | | | | |ZHS16GBK | 2 | char(2) | |AL32UTF8 | 3 | char(3) ...
分类:Web程序   时间:2021-06-02 12:09:50    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 12:09:15    阅读次数:0
实验五
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:其他好文   时间:2021-06-02 12:07:29    阅读次数:0
1000F.One Ocurrence(可持久化线段树+思维)
这题很妙。 多去完成这种级别的题目,建模能力才会真正得到提高。 题解干完springboot活补。 #include<bits/stdc++.h> using namespace std; inline int read() { int x=0,f=1;char c=getchar(); while ...
分类:其他好文   时间:2021-06-02 12:02:18    阅读次数:0
c语言中统计字符串中数字字符出现的次数
c语言中统计字符串中数字字符出现的次数。 1、 #include <stdio.h> void int_count(char x[], int cnt[]) { int i; while(x[i]) { if(x[i] >= '0' && x[i] <= '9') { cnt[x[i] - '0'] ...
分类:编程语言   时间:2021-06-02 11:38:03    阅读次数:0
57984条   上一页 1 ... 23 24 25 26 27 ... 5799 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!