码迷,mamicode.com
首页 >  
搜索关键字:code banking    ( 108690个结果
POJ 3107 - Godfather
本题与POJ 1655的区别是要把所有重心的点按顺序输出出来。// poj3107 Godfather#include #include #define NDEBUG#define MAXN 50005using namespace std;int N;int edgefw[MAXN*2], ...
分类:其他好文   时间:2014-05-01 08:53:09    阅读次数:284
配置yii访问远程数据库
1、将hdp002的数据库放到hdp004后,发现yii出现找不到表messages的迹象。用hdp002远程登录hdp004后发现,原来是hdp004没有授权给hdp002,用下面的sql语句即可:在安装mysql的机器上运行: 1、d:\mysql\bin\>mysql -h localho.....
分类:数据库   时间:2014-05-01 08:45:25    阅读次数:473
openfire build(2)
InterceptorManager PluginManageropenfire 插件的中servlet 在web-custom.xml 中的配置 url 一定要小写,访问时不区别大写小 否则404如: Sample1Servlet com.myyule.openfire.plugin.S...
分类:其他好文   时间:2014-05-01 08:42:11    阅读次数:305
console.read()读入的内容
今天写的特别简单的代码,大体是一个模式选择,从控制台读入一个数,然后做出相应的选择. 代码如下:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Thre...
分类:其他好文   时间:2014-05-01 08:41:35    阅读次数:340
深入指针(一)
本次主题:指针与数组在进入主题前,我们先看一个例子:#includeint main(){ int a[5] = { 1, 2, 3, 4, 5 }; int *ptr = (int *) (&a + 1); printf("%d,%d\n", *(a + 1), *(ptr - ...
分类:其他好文   时间:2014-05-01 08:40:11    阅读次数:324
Caching Tutorial
for Web Authors and WebmastersThis is an informational document. Although technical in nature, it attempts to make the concepts involved understandabl...
分类:其他好文   时间:2014-05-01 08:37:04    阅读次数:438
Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:其他好文   时间:2014-05-01 08:35:40    阅读次数:443
Linux 汇编语言开发指南
一、简介 作为最基本的编程语言之一,汇编语言虽然应用的范围不算很广,但重要性却勿庸置疑,因为它能够完成许多其它语言所无法完成的功能。就拿 Linux 内核来讲,虽然绝大部分代码是用 C 语言编写的,但仍然不可避免地在某些关键地方使用了汇编代码,其中主要是在 Linux 的启动部分。由于这部分代码与硬...
分类:编程语言   时间:2014-05-01 08:34:19    阅读次数:622
js进阶
上篇博客提到js是纯oop思想的语言 也就是在使用js编程的时候注重的是:什么时候 什么东西 做什么。 之前提到Js一经加载会马上执行,如果我们要控制的对象在js代码的下面那么网页被打开时js会先被执行然后加载下面的html代码,当js被执行的时候,下面的html代码还没加载到,js控制的对象...
分类:Web程序   时间:2014-05-01 08:33:03    阅读次数:488
Coder-Strike 2014 - Finals (online edition, Div. 2)——Bug in Code
给定n个数对(a, b),现在求有多少个数对(x, y)(1 <= x、y <= n)满足至少k个数对。x,y满足一个数对(a, b)当且仅当x、y出现在数对(a, b)中至少一次 3?≤?n?≤?3·10^5...
分类:其他好文   时间:2014-04-29 13:34:22    阅读次数:293
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!