码迷,mamicode.com
首页 >  
搜索关键字:fa 日记账类别    ( 1481个结果
D 题
题目大意:找朋友,最好把朋友最多的一堆的人数输出运用并查集,每次更新最大数即可;代码: 1 #include 2 #include 3 #include 4 using namespace std; 5 #define N 300010 6 int fa[N],a,b; 7 int k[N]; .....
分类:其他好文   时间:2014-07-27 23:22:29    阅读次数:211
webview调用本地字体
把字体文件放到Asset/font目录下Typeface typeFace=Typeface.createFromAsset(mContext.getAssets(),'font/ziti.ttf');TextView.setTypeface(typeFace);@font-face{font-fa...
分类:Web程序   时间:2014-07-26 13:44:55    阅读次数:316
FA模块的10个API范例
CREATE OR REPLACE PACKAGE BODY cux_fa_do_pkg IS --一、资产新增 PROCEDURE do_addition IS l_trans_rec fa_api_types.trans_rec_type; l_dist_trans_rec fa_api_ty....
分类:Windows程序   时间:2014-07-24 14:39:26    阅读次数:607
HDU1213最简单的并查集问题
题目地址http://acm.hdu.edu.cn/showproblem.php?pid=1213 1 #include 2 using namespace std; 3 #define MAX 100005 4 int fa[MAX]; 5 6 int findHead(int x) 7 { ....
分类:其他好文   时间:2014-07-24 12:10:25    阅读次数:229
nginx下 使用CI
nginx 默认不支持PATH_INFO 那么不能正常使用CI。 更改nginx.conf 配置 server { listen 80; server_name localhost; index index.php index.html index.htm; root /Users/renfrank/Sites/; location ~ \.php{ fa...
分类:其他好文   时间:2014-07-23 14:01:36    阅读次数:243
CopyFile 函数详解
CopyFile函数,文件拷贝函数,结构如下:copyfile( lpcstr lpexistingfilename, //源文件路径 lpcstr lpnewfilename, //新文件路径 bool bfailifexists //为true的话,如果新文件已存在, 则返回false; 为fa...
分类:其他好文   时间:2014-07-23 12:24:16    阅读次数:184
Cplus
1,factorials[i] = i * factorials[i - 1];#include using namespace std;const int ArSize = 16;int main() {long long factorials[ArSize];factorials[1] = fa...
分类:其他好文   时间:2014-07-19 15:38:16    阅读次数:202
Openfire:重新配置openfire
有些时候当我们在对openfire开发时,需要重置openfire的配置,这时最简单的方法就是重新运行openfire的安装程序。要重新运行安装程序,方法很简单:打开openfire的安装目录,找到conf目录,使用文本编辑器打开openfire.xml文件。找到一行,将true改为false。fa...
分类:其他好文   时间:2014-07-16 08:56:04    阅读次数:920
HDU 1829 A Bug's Life
题意: n只虫子  m种交配方式  并给出m对交配  问  是否存在基… 0.0 思路: 简单的带权并查集  比POJ上那道食物链基础  而且用二分染色可以水过(由于性别只有两种…) 带权并查集可以利用权值维护不同集合间的“关系” 代码书写时注意getf函数中利用fa[x]更新x和根的关系  merge时注意fy权值利用x、y的权值的计算方法 代码: #include...
分类:其他好文   时间:2014-07-15 12:30:45    阅读次数:234
Delphi文件夹的操作
/// /// 重命名文件夹/// function ReNameDirectort(SourceDirectort, DestinationDirectort: string): Boolean;var pDirOperate: TSHFileOpStruct;begin Result := Fa...
分类:其他好文   时间:2014-07-15 09:51:32    阅读次数:186
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!