码迷,mamicode.com
首页 > 其他好文
WA...
//组合数取模 #include #include #include #include #include #include using namespace std;const int MaxM = 10 + 5, MaxPi = 100000 + 5;int n, m, Top;int W[MaxM...
分类:其他好文   时间:2014-11-28 20:08:33    阅读次数:262
sas transpose过程
transpose基本语法Note: If output-data-set does not exist, PROC TRANSPOSE creates it by using theDATA n naming convention. 􀀀Note: If you omit the VAR stat...
分类:其他好文   时间:2014-11-28 20:07:22    阅读次数:583
<转>LOG日志级别
LevelDescriptionExampleemergEmergencies - system is unusable紧急-系统无法使用Child cannot open lock file. ExitingalertAction must be taken immediately必须立即采取措施...
分类:其他好文   时间:2014-11-28 20:08:22    阅读次数:275
UVA - 539
The Settlers of CatanWithinSettlers of Catan, the 1995 German game of the year, players attempt to dominate an island by building roads, settlements a...
分类:其他好文   时间:2014-11-28 20:08:12    阅读次数:174
Unique Paths
动态规划二位数组 1 class Solution { 2 public: 3 int uniquePaths(int m, int n) { 4 //c[i][j] = c[i-1][j] + c[i][j-1]; 5 if(m==0 || n==0) 6 ...
分类:其他好文   时间:2014-11-28 20:06:50    阅读次数:177
全志A20系列之驱动rtl8188eu
本教程适合A20系类的开发板。我的A20板子上面使用的是rtl8188eu的usb-wifi,搞了三天才驱动成功,成功用wifi连接到路由器,并且ping通www.baidu.com。注:操作系统:linux-sunxi(非Android)1.查看内核中是否支持8188eu驱动打开 linux-su...
分类:其他好文   时间:2014-11-28 20:08:29    阅读次数:220
CSU 1249 竞争性酶抑制剂和同工酶
1249: 竞争性酶抑制剂和同工酶Time Limit:1 SecMemory Limit:128 MBSubmit:109Solved:49Description 人体内很多化学反应都需要酶来催化。酶的功能可以简单理解为:将一种物质(底物)转化为另一种物质(目标产物)。 竞争性酶抑制剂会与底物竞争...
分类:其他好文   时间:2014-11-28 20:07:18    阅读次数:290
科研路上便捷的工具(注意是便利而已)
科研路上且行且珍惜
分类:其他好文   时间:2014-11-28 20:07:40    阅读次数:261
Nginx 伪静态
location / { if (!-e $request_filename) { rewrite ^/(.*\.(js|ico|gif|jpg|png|css|bmp|html|xls)$) /$1 last; rewrite ^/(\?\?.*\.(js|css...
分类:其他好文   时间:2014-11-28 20:08:15    阅读次数:207
POJ 2524 Ubiquitous Religions 【并查集】
解题思路:输入总人数 n,和m组数据;即和杭电畅通工程相类似,对这m组数据做合并操作后,求最后一共有多少块区域。#includeint pre[50001];int find(int root){ if(root!=pre[root]) pre[root]=find(pre[root]); ret....
分类:其他好文   时间:2014-11-28 20:07:43    阅读次数:248
递归--一种直接或者间接引用自身的定义方法
递归--一种直接或者间接引用自身的定义方法 引言:“盗梦空间”的电影。梦中梦,梦中梦,然后有时候循环。 我们在程序设计当中常常会遇到重复性的计算,我们最常用的方法是组织迭代循环,而我们除此之外还可以采用递归计算的方法。递归的定义:递归是一种直接或者间接引用自身的定义方法。一个合法的递归一般包含俩个部...
分类:其他好文   时间:2014-11-28 20:05:04    阅读次数:350
链表题目总结(第二篇)
第一篇里面的问题都是操作一个链表的情况,这一篇主要说说多个链表的一些问题 (1)合并两个已经排序好的链表//l1, l2两个指针不断的后移 ListNode *MergeSortedLists(ListNode *l1, ListNode *l2) { ListNode newhea...
分类:其他好文   时间:2014-11-28 20:05:43    阅读次数:151
【教材】 用Cheat Engine查找特殊码(简易版)
关于用OllyDbg查找特殊码【教材】用OllyDbg找出Agth提取GAL文本的特殊码(详细新人版) http://867258173.diandian.com/post/2014-02-12/40060970396【分享】VNR翻译日语游戏汉化简易图解教材http://blog.sina.com...
分类:其他好文   时间:2014-11-28 20:03:32    阅读次数:495
程序长时间后台保持运行
文一我从苹果文档中得知,一般的应用在进入后台的时候可以获取一定时间来运行相关任务,也就是说可以在后台运行一小段时间。还有三种类型的可以运行在后以,1.音乐2.location3.voip文二在IOS后台执行是本文要介绍的内容,大多数应用程序进入后台状态不久后转入暂停状态。在这种状态下,应用程序不执行...
分类:其他好文   时间:2014-11-28 20:04:00    阅读次数:280
【Daily Scrum】11-28
GroupToday's workTpmorrow's workMVVMAnother redesign of UIFix bugsAlgoFinish build with other partFix bugsRenderFinish blur effectsMerge to main proje...
分类:其他好文   时间:2014-11-28 20:05:39    阅读次数:200
虚方法和覆写方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace nange_1{ class A { public void f() { C...
分类:其他好文   时间:2014-11-28 20:04:03    阅读次数:175
[转]UI、GUI、UE、UX、ID、UED、UCD的区别
UI (User Interface):用户界面 UE (User Experience):用户体验 ID (Interaction design):交互设计 UID (User Interface Design):用户界面设计 UED (User-Experience De...
分类:其他好文   时间:2014-11-28 20:02:57    阅读次数:269
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!