码迷,mamicode.com
首页 > 2014年12月11日 > 全部分享
贪心/Hdu 1050 Moving Tables
#include#includeusing namespace std;int a[220];int cmax(int a,int b){return a>b?a:b;}int main(){ int T; scanf("%d",&T); for (int t=1;tyy) ...
分类:其他好文   时间:2014-12-11 23:39:22    阅读次数:191
深入理解java虚拟机-第七章
第7章 虚拟机类加载机制类的加载的时机加载 Loading, 连接 Linking(验证 Verfiication, 准备Preparation, 解析 Resolution) 初始化 Initialization, 使用Using和卸载 Unloading类加载的过程:1,加载: 加载是“类加载....
分类:编程语言   时间:2014-12-11 23:42:12    阅读次数:194
leetcode. Best Time to Buy and Sell Stock
Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transaction (ie...
分类:其他好文   时间:2014-12-11 23:39:11    阅读次数:212
贪心/hdu 1052 Tian Ji -- The Horse Racing
1 #include 2 #include 3 #include 4 using namespace std; 5 int n; 6 int tian[1010],king[1010]; 7 bool cmp(int x,int y) 8 { 9 return x>y;10 }11 int...
分类:其他好文   时间:2014-12-11 23:41:12    阅读次数:146
Duilib学习三 响应按钮
1 #pragma once 2 #include 3 using namespace DuiLib; 4 5 #ifdef _DEBUG 6 # ifdef _UNICODE 7 # pragma comment(lib, "DuiLib_ud.lib") 8 # els...
分类:其他好文   时间:2014-12-11 23:40:51    阅读次数:289
自己动手写游戏:坦克撕逼大战
START:最近在公交车上无聊,于是用平板看了看下载的坦克大战的开发教程,于是在晚上回家后花了两天模仿了一个,现在来总结一下。一、关于坦克大战 《坦克大战》(Battle City)是1985年日本南梦宫Namco游戏公司开发并且在任天堂FC平台上,推出的一款多方位平面射击游戏。游戏以坦克战斗及保....
分类:其他好文   时间:2014-12-11 23:40:50    阅读次数:422
oracle学习--循环语句
oracle学习--循环语句loop循环:create or replace procedure pro_test_loop isi number;begini:=0;loop i:=i+1; dbms_output.put_line...
分类:数据库   时间:2014-12-11 23:40:36    阅读次数:238
贪心/poj 1323 Game Prediction
1 #include 2 #include 3 #include 4 using namespace std; 5 int m,n,lose,x; 6 bool flag[1010],v[1010]; 7 bool cmp(int a,int b) 8 { 9 return a>b;10 ...
分类:其他好文   时间:2014-12-11 23:39:39    阅读次数:182
黄聪:C#如何通过MeasureString、Graphics获取字符串的像素长度
1、使用g.MeasureString()获得使用MeasureString测量出来的字符宽度,总是比实际宽度大一些,而且随着字符的长度增大,貌似实际宽度和测量宽度的差距也越来越大了。查了一下MSDN,找到了下面这个理由:MeasureString 方法旨在与个别字符串一起使用,它在字符串前后包括少...
分类:Windows程序   时间:2014-12-11 23:37:57    阅读次数:339
WCF : 如何将NetTcpBinding寄宿在IIS7上
摘要 : 从IIS 7 开始, IIS增加了对非HTTP协议的支持. 因此, 自IIS 7之后, 可以将NetTcpBinding等非HTTP协议的Bindings直接寄宿在IIS上面. 本文将介绍如何在IIS上配置WCF NetTcpBinding, 并且对其工作的方式进行比较深入的讨论.Wind...
分类:Web程序   时间:2014-12-11 23:39:25    阅读次数:337
贪心/poj 1018 Communication System
1 #include 2 #include 3 #include 4 using namespace std; 5 const int INF=0xfffffff; 6 struct node 7 { 8 int b,p; 9 };10 node a[110][110];11 int m[...
分类:其他好文   时间:2014-12-11 23:38:57    阅读次数:222
贪心/poj 2437 Muddy roads
1 #include 2 #include 3 #include 4 using namespace std; 5 struct node 6 { 7 int st,ed; 8 }; 9 node a[10010];10 11 int n,L,ans,pre;12 13 bool cmp(...
分类:其他好文   时间:2014-12-11 23:38:53    阅读次数:250
结构体struct和typedef后面接指针的含义
typedef struct file{...}FileInfo, *FileP;上述程序中定义了一个结构体,结构体的名字为file,并且给其指针 取个别名为FileP,所以后续程序中出现FileP就相当于是struct file *
分类:其他好文   时间:2014-12-11 23:37:47    阅读次数:264
AForge.net简介和认识
AForge.NET是一个专门为开发者和研究者基于C#框架设计的,他包括计算机视觉与人工智能,图像处理,神经网络,遗传算法,机器学习,模糊系统,机器人控制等领域。这个框架由一系列的类库组成。主要包括有:AForge.Imaging —— 日常的图像处理和过滤器AForge.Vision —— 计算机...
分类:Web程序   时间:2014-12-11 23:40:15    阅读次数:232
Android生成keystore方法
一、eclipse 中生成android keystore 建立任意一个android项目(例如:AntForAndroid) 右键AntForAndroid根目录弹出菜单->Android Tools -> Export Signed Application Package... Next > 选择“Create new keys...
分类:移动开发   时间:2014-12-11 22:37:02    阅读次数:314
GNU Autotools的使用方法
手工写Makefile是一件很有趣的事情,对于比较大型的项目,如果有工具可以代劳,自然是一件好事。在Linux系统开发环境中,GNU Autotools 无疑就充当了这个重要角色。(在Windows系统的开发环境中,IDE工具,诸如Vis...
分类:其他好文   时间:2014-12-11 22:36:06    阅读次数:402
easyui视频教程
视频目录: sypro示例程序(springMvc+hibernate4+easyui) sshe示例程序(struts2+spring3+hibernate4+easyui)(Maven构建) easyui1.2.6整站文件.zip jquery1.7.2中文API修正版.chm jquery.easyui-1.2.5源码未压缩版...
分类:其他好文   时间:2014-12-11 22:36:42    阅读次数:428
2028条   上一页 1 ... 4 5 6 7 8 9 10 ... 120 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!