https://github.com/tboox/tbox GBOX是一个用c语言实现的多平台图形库,支持windows、linux、mac、ios、android以及其他嵌入式系统。 现在这个项目,正处于早期开发阶段,暂不提供使用,仅供参考学习 如果您感兴趣,可以阅读源码 ####已实现的功能 矢 ...
分类:
编程语言 时间:
2017-03-19 11:12:59
收藏:
0 评论:
0 赞:
0 阅读:
366
3.1 if语句初步 如果……那么……否则…… if就是英语“如果”的意思,else就是“否则”。 举个例子: 1 if(明天不下雨){ 2 我就出去玩; 3 }else{ 4 我就在家写作业; 5 } 公式: 1 if(条件表达式){ 2 条件为真的时候做的事情 3 }else{ 4 条件为假的时 ...
分类:
其他 时间:
2017-03-19 11:12:32
收藏:
0 评论:
0 赞:
0 阅读:
393
1 打开控制面板,点击网络和Internet连接 2 如果存在宽带连接选项。 则点击左侧的网上邻居,然后点击查看网络连接 右击宽带连接,点击创建快捷方式,放到桌面,改一下快捷方式的名字即可。 3 如果没有宽带连接,如下图所示,则点击添加。 4 选择第四项,通过宽带连接到网络 5 则再次查看网络连接有... ...
分类:
其他 时间:
2017-03-19 11:12:04
收藏:
0 评论:
0 赞:
0 阅读:
247
题目链接:V 这道题由于是单点询问,所以异常好写。 注意到每种修改操作都可以用一个标记\((a,b)\)表示。标记\((a,b)\)的意义就是\(x=\max\{x+a,b\}\) 同时这种标记也是支持合并的。有\((a,b)+(c,d)=(a+c,\max\{b+c,d\})\) 用上这种标记的话 ...
分类:
其他 时间:
2017-03-19 11:11:47
收藏:
0 评论:
0 赞:
0 阅读:
228
入口程序 如果做过Web之外开发的人,应该记得这个是标准的Console或者Winform的入口。为什么会这样呢?.NET Web Development and Tools Blog ASP.NET Core is a console app In RC1 an ASP.NET applicati ...
分类:
Web开发 时间:
2017-03-19 11:11:21
收藏:
0 评论:
0 赞:
0 阅读:
407
数字三角形,DP裸题 1 #include<stdio.h> 2 #include<string.h> 3 #define max(a,b) (a)>(b)?a:b 4 5 int g[101][101],dp[101][101]; 6 7 int max1(int i,int j){ 8 retu ...
分类:
其他 时间:
2017-03-19 11:10:51
收藏:
0 评论:
0 赞:
0 阅读:
211
页面验证部分: 1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2 pageEncoding="UTF-8"%> 3 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Tran ...
分类:
其他 时间:
2017-03-19 11:10:26
收藏:
0 评论:
0 赞:
0 阅读:
192
前几天公司电脑坏了,换了台电脑,然后adb竟然忘了怎么配置的了,甚是烦人。又去网上搜了下,现在记录如下。以下内容为转载 该博文主要转自http://www.cnblogs.com/cnwutianhao/p/6557571.html。特此感谢! 方法一: 在没有配置adb之前,我们打开Windows ...
分类:
数据库技术 时间:
2017-03-19 11:10:07
收藏:
0 评论:
0 赞:
0 阅读:
233
hdu1029 找出数列中出现(N+1)/2次的数,暴力模拟 1 #include<stdio.h> 2 #include<map> 3 using namespace std; 4 5 int main(){ 6 int n; 7 while(scanf("%d",&n)!=EOF){ 8 map ...
分类:
其他 时间:
2017-03-19 11:09:30
收藏:
0 评论:
0 赞:
0 阅读:
222
hdu1097 求a^b的末位数 打表O(1) 1 import java.util.*; 2 3 public class Main { 4 static int [][]a = new int[15][15]; 5 static int []num = new int[15]; 6 public ...
分类:
其他 时间:
2017-03-19 11:09:11
收藏:
0 评论:
0 赞:
0 阅读:
202
数字中不能出现4或者连续的62,数位DP裸题 1 #include<stdio.h> 2 #include<string.h> 3 long long ans; 4 bool a[1000000]; 5 void fun(){ 6 for(long long i=0;i<=1000000;i++){ ...
分类:
其他 时间:
2017-03-19 11:08:52
收藏:
0 评论:
0 赞:
0 阅读:
116
安装包以及汉化包的下载(大小151M): 链接:http://pan.baidu.com/s/1hsA5GUS 密码:roui 破解: 正常安装的webstorm是要注册码的,这里教你免费使用的方法,初次安装前,先把电脑的时间设置为2030年以后(时间随意设置,2030年或许你都不敲代码了吧,哈哈) ...
分类:
Web开发 时间:
2017-03-19 11:08:20
收藏:
0 评论:
0 赞:
0 阅读:
207
N^2的dp,刚入门的时候很难想到,dp[i]表示到达第i个点的最小时间,可以从之前任意一点处加上充电时间充电转移过来。 1 #include<stdio.h> 2 #define min(a,b) (a)<(b)?a:b 3 int L,N,C,T,VR,VT1,VT2,p[102]; 4 dou ...
分类:
其他 时间:
2017-03-19 11:08:02
收藏:
0 评论:
0 赞:
0 阅读:
265
You are given a number of case-sensitive strings of alphabetic characters, find the largest string X, such that either X, or its inverse can be found ...
分类:
其他 时间:
2017-03-19 11:07:40
收藏:
0 评论:
0 赞:
0 阅读:
212
hdu2069 选取硬币组成定值,暴力 1 #include<stdio.h> 2 int v[6]={0,50,25,10,5,1}; 3 4 int main(){ 5 int n; 6 while(scanf("%d",&n)!=EOF){ 7 int ans=0,ans1=0; 8 for( ...
分类:
其他 时间:
2017-03-19 11:07:22
收藏:
0 评论:
0 赞:
0 阅读:
166
给出修建边的边权,求连通所有点的最小花费 最小生成树裸题 1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 using namespace std; 5 6 struct seg{ 7 int a,b,l; 8 bool ...
分类:
其他 时间:
2017-03-19 11:07:05
收藏:
0 评论:
0 赞:
0 阅读:
210
将一个偶数拆成两个素数的和,欧拉筛暴力 1 #include<stdio.h> 2 #include<string.h> 3 #define N 10001 4 int prime[10001]; 5 bool check[10001]; 6 int n,i,ans,tot=0,j; 7 8 voi ...
分类:
其他 时间:
2017-03-19 11:06:42
收藏:
0 评论:
0 赞:
0 阅读:
150
1、Action类 execute 方法 ActionMapping 对应 <action path="user" type="myuser.UserAction" name="user" parameter="op"></action> ActionForward 对应 <forward name ...
分类:
其他 时间:
2017-03-19 11:06:12
收藏:
0 评论:
0 赞:
0 阅读:
165
矩形面积并 线段树-扫描线裸题 1 #include<stdio.h> 2 #include<string.h> 3 #include<algorithm> 4 #include<math.h> 5 using namespace std; 6 const int maxm=2e3+5; 7 con ...
分类:
其他 时间:
2017-03-19 11:05:48
收藏:
0 评论:
0 赞:
0 阅读:
266
关于指数型母函数的题目,通过用公式并展开得到系数做的吧,取最后两位就是对100取模 1 #include<stdio.h> 2 3 int QuickPow(int a,long long n,int p){ 4 int temp=a,ans=1; 5 while(n){ 6 if(n&1)ans= ...
分类:
其他 时间:
2017-03-19 11:05:26
收藏:
0 评论:
0 赞:
0 阅读:
216