码迷,mamicode.com
首页 >  
搜索关键字:jsp include    ( 101623个结果
Solution -「YunoOI 2017」由乃的 OJ
Description Link. 起床困难综合症 上树。 Solution 线段树维护,树剖上树。 具体题解有空再写,我要去睡觉了。 #include<bits/stdc++.h> typedef unsigned long long ULL; struct node { ULL one,zero ...
分类:其他好文   时间:2021-04-19 15:09:51    阅读次数:0
套接字编程
##Socket函数 #include <sys/types.h> #include <sys/socket.h> int socket(int domain, int type, int protocol); domain 协议族: AF_OCAL, AF_INT, AF_INET7 type S ...
分类:其他好文   时间:2021-04-19 15:04:18    阅读次数:0
JSP的内置对象
内置对象 * 在jsp页面中不需要创建,直接使用的对象 * 一共有9个: 变量名 真实类型 作用 * pageContext PageContext 当前页面共享数据,还可以获取其他八个内置对象 * request HttpServletRequest 一次请求访问的多个资源(转发) * sessi ...
分类:Web程序   时间:2021-04-19 14:46:46    阅读次数:0
HDU1160 - FatMouse's Speed - 最长上升子序列的变形+记录路径
##思路 最长上升子序列的变形+记录路径 ##AC代码 #include<iostream> #include<cmath> #include<string.h> #include<algorithm> #include<stdio.h> #include<iomanip> #define inf ...
分类:其他好文   时间:2021-04-19 14:43:51    阅读次数:0
POJ 1753
BFS可以延伸的应用变化繁多,这道题配合状态压缩共同解决,不过时空复杂度还可以进一步优化。 #include <iostream> #include <algorithm> #include <queue> #include <string> #include <vector> #include < ...
分类:其他好文   时间:2021-04-19 14:36:16    阅读次数:0
c语言字母大小写转换
核心思想 在 C 语言中区分字母的大小写,利用 ASCII 码中大写字母和小写字母之间的转换关系(差值为 32),可以将小写字母转换为大写字母。编写程序实现,从键盘上输入一个小写字母,按回车键,程序将该小写字母转换为大写字母,并输出其 ASCII 值。 由于大写字母与小写字母之间的差值为 32,因此 ...
分类:编程语言   时间:2021-04-19 14:11:41    阅读次数:0
NX二次开发 数值转NXString字符
VS2010 NX8.5 #include<algorithm>#include <sstream>#include <iomanip> //定义涵数 NXString doubleToNXString(double value);//double转换NXString NXString intToN ...
分类:其他好文   时间:2021-04-16 12:13:21    阅读次数:0
ex3
task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main(){ int x, n; srand(time(0)); for(n=1 ; n<=N; n++){ x = rand() % 10 ...
分类:其他好文   时间:2021-04-16 12:04:07    阅读次数:0
模拟cpu/mem/io使用率
模拟cpu使用率 脚本: 可以将1个cpu-core打满 k.c #include <stdlib.h> int main() { while(1); return 0; } gcc -o out k.c ./out 查看top可以看到将1个cpu-core打满,可以根据需要,并发启动多个进程将多个 ...
分类:其他好文   时间:2021-04-16 12:03:28    阅读次数:0
实验三
恢复内容开始 实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); for(n=1; n<=N; n++) { x = ran ...
分类:其他好文   时间:2021-04-16 12:00:33    阅读次数:0
101623条   上一页 1 ... 45 46 47 48 49 ... 10163 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!