题目连接:http://course.baidu.com/view/2d86a6c1960590c69fc37622.html
1,奖券数目52488
#include
using namespace std;
bool isOK(int a)
{
while(a)
{
if(a%10==4) return false;
a /= 10;
}
return true;
}
i...
分类:
编程语言 时间:
2015-04-13 23:04:08
阅读次数:
1985
图(Graph)
(参考资料:《大话数据结构》《算法导论》)
图是由顶点的有穷非空集合和顶点之间的边的集合组成,通常表示为:G(V,E),其中G表示一个图,V是图G中顶点(Vertex)的集合,E是图中边的集合。
图的相关术语
1.无向图与有向图
无向图:图中任意两个顶点u和v之间的边没有方向(无...
分类:
其他好文 时间:
2015-04-13 23:04:08
阅读次数:
245
Frank is a portfolio manager of a closed-end fund for Advanced Commercial Markets (ACM ). Fund collects money (cash) from individual investors for a certain period of time and invests cash into variou...
分类:
其他好文 时间:
2015-04-13 23:05:36
阅读次数:
363
当调用对象方法时,编译器都会默认传入一个指向本对象的指针。所以不同的对象都会调用到正确的成员变量。这个指针就是self,它的值就是new时在堆中分配内存的首地址。那么这个self在方法调用时是存储在栈中么?上代码调试来看一下
#import
@interface Person : NSObject
{
int _age;
}
- (void)setAge:(int)age;
- (...
分类:
其他好文 时间:
2015-04-13 23:03:36
阅读次数:
122
APP端开发步骤说明
1.IOS开发要点说明
以下项目开发环境以Xcode10.0,运行环境为IOS7.0为例,说明其开发中需要的操作。
1)项目设置APPID
商户在微信开放平台申请开发APP应用后,微信开放平台会生成APP的唯一标识APPID。在Xcode中打开项目,设置项目属性中的URL Schemes为您的APPID。如图8.7标红位置所示。
图...
分类:
微信 时间:
2015-04-13 23:03:47
阅读次数:
376
在使用官方的控件SwipeRefreshLayout,发现原先的emptyView消失了,在网上搜索了许多资料,没有匹配我的答案,因为我的emptyView是用一个帮助类来实现的,后来百经挫折,终于找到了一个完美的方法了,介绍如下:
首先,更改xml的布局,在外面增加一层Framelayout,改善后的XML布局如下:
<FrameLayout
android:id=...
分类:
移动开发 时间:
2015-04-13 23:04:23
阅读次数:
236
uva 11137 Ingenuous CubrencyPeople in Cubeland use cubic coins. Not only the unit of currency is called a cube but also the coins are shaped like cubes and their values are cubes. Coins with values of...
分类:
其他好文 时间:
2015-04-13 23:04:26
阅读次数:
155
不同网关的两个网卡配置在机房需求配置两个网卡,一个网络可以上外网(eth0),一个只固定几个ip段可以访问(eth2)。在eth0上配置了vlan trunk模式, vlan id为1004。eth2为普通的接入模式。eth0和eth2的网络是隔离的。手动添加虚拟vlanvconfig add eth0 1004
ifconfig eth0.1004 10.128.4.1 netmask 255.2...
分类:
其他好文 时间:
2015-04-13 23:03:26
阅读次数:
209
The Employee table holds all employees. Every employee has an Id, and there
is also a column for the department Id.
+----+-------+--------+--------------+
| Id | Name | Salary | DepartmentId |
+--...
分类:
其他好文 时间:
2015-04-13 23:04:15
阅读次数:
179
由于一篇blog写不完,这里是接着上一篇blog的。
写完了MVC中的View,写着我们需要考虑Control层了,他的任务是在后台利用多线程实现断点下载。
先看源码:
public class FileDownloader
{
/* TAG,便于调试 */
private static final String TAG = "FileDownloader";
/* 上下文 */
p...
分类:
移动开发 时间:
2015-04-13 23:04:44
阅读次数:
207
android自带的dialog样式一般不满足自己的要求,那就要求dialog自定义。
其实,activity也是可以以dialog的形式存在的,我们只需在清单文件中设置其theme属性即可:
android:name=".EditActivity"
android:theme="@android:style/Theme.Dialog"
...
分类:
其他好文 时间:
2015-04-13 23:02:33
阅读次数:
197
开始一直tle后来才发现少了for(int i=0;i
#include
#include
#include
#include
#include
#define maxn 505
using namespace std;
vector >mapp;
int visit[maxn][maxn];
int n,m;
int head[maxn];
int re[maxn];
void topo(...
分类:
其他好文 时间:
2015-04-13 23:05:03
阅读次数:
163
13460. Passwords
Constraints
Time Limit: 1 secs, Memory Limit: 256 MB
Description
Mirko is an evil plotting genius and has gotten hold of a list of all possible passwords for a certa...
分类:
其他好文 时间:
2015-04-13 23:03:03
阅读次数:
241
1、为什么要重写Application类
如果想在整个应用中使用全局变量,在java中一般是使用静态变量,public类型;而在android中如果使用这样的全局变量就不符合Android的框架架构,但是可以使用一种更优雅的方式就是使用Application context。
那么为什么这样的全局变量就不符合Android的框架架构?
众说纷纭,我理解的是static访问是无法跨进程的...
分类:
移动开发 时间:
2015-04-13 23:01:50
阅读次数:
150
分支操作1.查看远程分支前面带*号的代表你当前工作目录所处的分支
$ git branch -a
* br-2.1.2.2
master
remotes/origin/HEAD -> origin/master
remotes/origin/br-2.1.2.1
remotes/origin/br-2.1.2.2
remotes/origin/br-2.1.3
remote...
分类:
其他好文 时间:
2015-04-13 23:04:47
阅读次数:
136
题意:有一个字符串,问可以切割成尽量少的多少个回文串。
题解:f[i]表示前i的字符串有多少个尽量少的回文串,用一个数组flag[i][j]表示字符串从位置i到位置j是否是一个回文串,如果是的话,f[i] = min{f[i - 1] + 1, f[j - 1] + 1}。
#include
#include
#include
using namespace std;
const int...
分类:
其他好文 时间:
2015-04-13 23:02:16
阅读次数:
166
Zookeeper集群shell操作(简单)...
分类:
系统相关 时间:
2015-04-13 23:02:47
阅读次数:
245