码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
数据类型的转换
数据类型的转换主要分为,强转换,和隐式转换 1.强转换 Number() 如果为布尔值,true为1,false为0 如果是null返回0 undefined 返回NaN 如果是字符串,其中只包含数字,或者有浮点数,会返回数字并且保留浮点值,其中的会报NaN toString() parseInt( ...
分类:其他好文   时间:2021-01-18 10:49:55    阅读次数:0
10.为客户端添加输入线程(Thread)
客户端开启一个线程,使得用户可以输入指令 服务端: //vc的第一套socket,第二套socket,可能存在冲突 #define WIN32_LEAN_AND_MEAN #define _WINSOCK_DEPRECATED_NO_WARNINGS //也可以放到工程属性,预处理中 #includ ...
分类:编程语言   时间:2021-01-18 10:47:52    阅读次数:0
利用ncurses库实现简单飞机小游戏
#include<stdlib.h> #include<ncurses,h> #define plane '*' char plane(int x,int y); int main() { int x = 5; int y = 10; char ch; initscr(); cbreak(); no ...
分类:其他好文   时间:2021-01-16 11:44:00    阅读次数:0
脚本模块化能用代码
(function (root, factory) { if (typeof define 'function' && define.amd) { // AMD. Register as an anonymous module. define([], factory); } else if (typ ...
分类:其他好文   时间:2021-01-14 11:31:13    阅读次数:0
DIV3E 基环树
#include<bits/stdc++.h> using namespace std; #define lson l,m,rt<<1 #define rson m+1,r,rt<<1|1 #define rush! ios::sync_with_stdio(false);cin.tie(0); c ...
分类:其他好文   时间:2021-01-13 11:33:41    阅读次数:0
nvGRAPH三角形计数示例
nvGRAPH三角形计数示例 #include “ stdlib.h” #include“ inttypes.h” #include“ stdio.h” #include“ nvgraph.h” #define check( a )\ {\ nvgraphStatus_t status =(a); ...
分类:其他好文   时间:2021-01-13 11:23:13    阅读次数:0
atcoder abc 188 题解
A - Three-Point Shot 题目大意 两个球队现在分数分别给出,问少的一方投入三分球之后是否能翻盘. 代码 #include <bits/stdc++.h> using namespace std; typedef long long ll; #define forn(i,x,n) f ...
分类:其他好文   时间:2021-01-13 10:46:21    阅读次数:0
CF1054D Solution
题目链接 题解 因为异或结果$\not=0$的情况过多,我们可以转为考虑结果$=0$的情况,用总数减去这些区间即可。每一个数都可以和包括自己的$n$个数组为区间,因此总数$=\frac{n(n+1)}{2}$。 至于如何求结果$=0$的方案数,可以想到前缀和,但枚举左右端点需要$O(n^2)$的时间 ...
分类:其他好文   时间:2021-01-12 11:03:22    阅读次数:0
CF1036C Solution
题目链接 题解 很普通的数位dp题呐,$state$表示$>0$的数位个数。 AC代码 #include<bits/stdc++.h> #define int long long using namespace std; int dp[20][5],a[20],cnt; int dfs(int po ...
分类:其他好文   时间:2021-01-12 11:02:11    阅读次数:0
c++ 模板类不能分离编译
在.h文件中必须同时有模板的声明和明确的定义,不能在.cpp中却定义。 1 #ifndef STACKTP_H_ 2 #define STACKTP_H_ 3 template <class Type, int MAX> 4 class Stack 5 { 6 private: 7 Type ite ...
分类:编程语言   时间:2021-01-12 10:36:55    阅读次数:0
25272条   上一页 1 ... 24 25 26 27 28 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!