码迷,mamicode.com
首页 >  
搜索关键字:using stacks    ( 53729个结果
好乱的代码
using System;using System.Web;public class Search_Book : IHttpHandler { public void ProcessRequest (HttpContext context) { context.Respo...
分类:其他好文   时间:2014-04-30 23:28:59    阅读次数:372
Ajax.BeginForm返回方法OnSuccess
在MVC3里面——程序集 System.Web.Mvc.dll, v4.0.30319有这么一个Ajax.BeginForm异步登录验证的类型,我们在下面给出一个例子:在登录页面Logion.cshtml。使用@using (Ajax.BeginForm("Login", "Home", new.....
分类:其他好文   时间:2014-04-30 23:13:32    阅读次数:561
vs2008中使用gdi+的设置
vs2008中使用gdi+1.新建一个mfc工程2.在stdafx.h文件中加入以下几行语句:#include //#pragma comment(lib, "gdiplus.lib") //在工程属性中添加亦可using namespace Gdiplus; //使用GDI+的命名空间, 若不用....
分类:其他好文   时间:2014-04-30 23:03:21    阅读次数:553
UVA 315 求割点数
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=251 测模版: #include #include #include #include #include #include using namespace std; #define ...
分类:其他好文   时间:2014-04-29 13:31:21    阅读次数:542
poj 2431 Expedition 贪心+最大堆
当油量不够时从走过的油站中选最大加油量的 #include #include #include #include using namespace std; #define MAX_N 10005 struct node{ int dist,fuel; }t[MAX_N]; bool cmp(const node &a,const node &b) { return a.dist<b.dis...
分类:其他好文   时间:2014-04-28 10:44:43    阅读次数:335
大数乘法
大数乘法的步骤(先戳我看看大数加法的思想): 首先我们输入要相乘的2个数字,然后逆序。用2层循环来相乘,把下标[i]*[j]计算的结果放在下标[i*j-1]中(下标从1开始),建议及时处理进位问题(char字符范围比较小)。 最后从高位开始输出。 #include #include #define MAX 1000 using namespace std; void InputN...
分类:其他好文   时间:2014-04-28 10:24:42    阅读次数:371
虚函数
1.虚函数在类内部声明,形式为: virtual (形参列表) 虚函数的声明比普通函数多一个virtual,公有派生类中可以省略virtual关键字,派生类中重写虚函数,必须要求返回值类型形参列表一致,否则会发生同名覆盖。派生类只有在公有继承的方式继承基类时,才会有虚函数的正常使用。使用虚函数的例子: # include using namespace std; # include...
分类:其他好文   时间:2014-04-27 22:22:20    阅读次数:273
Java Lambda表达式入门
原文链接: Start Using Java Lambda Expressions 下载示例程序 Examples.zip 。 原文日期: 2014年4月26日 翻译日期: 2014年4月27日 翻译人员: 铁锚 简介 (译者注:虽然看着很先进,其实Lambda表达式的本质只是一个"语法糖",由编译器推断并帮你转换包装为常规的代码,因此你可以使用更少的代码来实现同样的功能。本人建议不要...
分类:编程语言   时间:2014-04-27 21:45:03    阅读次数:460
C#-访问轰炸机,新建进程,结束进程...(ConsoleApp)---ShinePans
program.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace Tst { class Program { static void Main(string[] arg...
分类:移动开发   时间:2014-04-27 21:35:59    阅读次数:467
[2012山东ACM省赛] Fruit Ninja II (三重积分,椭球体积)
解题思路: 高数上的三重积分。注意:PI的精度要大些,一开始用的3.1415926通不过,精度太小,后来百度3.1415926535898。还有浮点数的除法记得*1.0。 题目中的oc = ob这条信息特别关键。 代码: #include #include #include #include using namespace std; #define pi 3.1415...
分类:其他好文   时间:2014-04-27 21:18:00    阅读次数:387
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!