码迷,mamicode.com
首页 > 2014年08月10日 > 全部分享
poj 2524
#include #includeusing namespace std;#define N 50010int p[N]; void init(int n){ for(int i=1 ;i#include #include #include #include #include using name....
分类:其他好文   时间:2014-08-10 21:18:50    阅读次数:324
【Unity 3D】学习笔记三十九:控制组件
控制组件角色控制组件和刚体组件都具备物理引擎的功能,须要绑定游戏对象才干实现对应的物理效果,而且同一个游戏对象中两者仅仅能存在一个,不能共存。刚体组件能够很精确的模拟现实世界中的一切物理效果,而角色控制器则没有那么精准。加入角色控制器之前,须要确定是否把角色控制器标准资源包引入project,未引人...
分类:其他好文   时间:2014-08-10 21:18:40    阅读次数:381
[Node.js]在windows下不得不防的小错误
TypeError: Arguments to path.join must be strings at f (path.js:204:15) at Object.filter (native) at exports.join (path.js:209:40) at expo...
分类:Windows程序   时间:2014-08-10 21:18:30    阅读次数:241
[leetcode]Maximum Subarray
Maximum SubarrayFind the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array[?...
分类:其他好文   时间:2014-08-10 21:18:20    阅读次数:232
XSL自定义函数
利用微软的XSL的继承特性,用户可以自定义XSL函数.基本原理是用户写的脚本代码写在msxsl中,并设置这部分msxsl继承到用户自定义空间中,那么用户就可以通过用户自定义空间使用msxsl中的脚本代码.步骤:1. xsl:stylesheet中定义msxml和用户空间. xmlns:msxsl="...
分类:其他好文   时间:2014-08-10 21:18:10    阅读次数:885
bootstrap 3 排版
一:标题: 1.大标题 HTML 中的所有标题标签, 到 均可使用。另外,还提供了 .h1 到 .h6 类,为的是给内联(inline)属性的文本赋予标题的样式。 2.副标题 在标题内还可以包含 标签或赋予 .small 类的元素,可以用来标记副标题。 h1. Bootstrap heading S...
分类:其他好文   时间:2014-08-10 21:18:00    阅读次数:231
zoj 1586
//zoj 1586#include#includeusing namespace std;#define N 1005int a[N][N],low[N],n,ans;int b[N];int min(int x,int y){ return x#includeusing namespace...
分类:其他好文   时间:2014-08-10 21:17:50    阅读次数:348
poj 1703
// hnldyhy(303882171) 17:07:57// poj 1703#include int p[200005];void init(int n){ for (int i=1;i#includeusing namespace std;#define N 500001int ...
分类:其他好文   时间:2014-08-10 21:17:41    阅读次数:252
zoj 2724
#include #include #include #include #include using namespace std;struct node{ char msg[20]; int a,b;};struct cmp{ bool operator()(const node ...
分类:其他好文   时间:2014-08-10 21:17:20    阅读次数:214
zoj 1010 (线段相交判断+多边形求面积)
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=10AreaTime Limit: 2 Seconds Memory Limit: 65536 KB Special JudgeJerry, a middle school.....
分类:其他好文   时间:2014-08-10 21:17:00    阅读次数:404
ppt 图的基本算法 Bfs
输入:8 91 21 32 42 53 63 74 85 86 7// 图的BFS,使用C++队列#include #include #include using namespace std;#define N 10int g[N][N],bz[N],n,m;queue q;void BFS(in....
分类:其他好文   时间:2014-08-10 21:16:50    阅读次数:247
基于SOA的编程模型
1.webservice是SOA架构的一种实现======================================================================================================Spring-WS编程模型: 面向契约的开发:xm...
分类:其他好文   时间:2014-08-10 21:16:40    阅读次数:207
java之j2se:再学java对象容器
今天是开学第一天,按照上学期的讲课进度,本该是可以开始学习多线程了,但是由于换了老师,可能交接方面有点出入,又给我们讲授了一遍java对象容器,所以这也是为什么题目为“再学”。 本文目录: 集合的主要用途 单值类集合:List类与Set类 键值对类集合:Map类 集合的主要用途:集合主要在查询数据返...
分类:编程语言   时间:2014-08-10 21:16:30    阅读次数:205
app framework map及ajax方法
$(function () { $.ajax({ url: 'Ashx/GetProductList.ashx', contentType: "JSON", success: functi...
分类:移动开发   时间:2014-08-10 21:16:20    阅读次数:216
sass重构响应式unofficial‘s博客轻松适应移动端
前言: 刚刚玩博客园几天时间,发现挺不错的,对于我这个懒人又是一个爱折腾的人来说挺不错的,对于上班玩电脑,下班玩手机的用户来说,博客园中我的博客有一点给我的感觉不是很友好,电脑端看起来很美观的一个页面,移动端竟然也是原模原样的“美观”,由于工作主要是从事移动端开发,看着博客可以禁用模板样式,于是乎....
分类:移动开发   时间:2014-08-10 21:16:10    阅读次数:320
zoj 1649
//hnldyhy(303882171) 11:12:46// zoj 1649//bfs +优先队列#include #include #include using namespace std;struct node{ int x; int y; int step;};bool...
分类:其他好文   时间:2014-08-10 21:16:00    阅读次数:342
java继承会犯的小错误
注意事项:阅读本文前应该先了解java的继承。本文定位为已经继承基础知识。一:试图覆盖私有方法先上代码 1 public class Father { 2 3 private void print() { 4 System.out.println("private prin...
分类:编程语言   时间:2014-08-10 21:15:50    阅读次数:264
1233条   上一页 1 ... 9 10 11 12 13 14 15 ... 73 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!