一般情况下是因为工程的Targets->General->Build为空,设置为1.0
删除模拟器相同的应用或者直接还原模拟器....
分类:
其他 时间:
2014-02-22 08:40:06
收藏:
0 评论:
0 赞:
0 阅读:
258
线性判别分析(Linear discriminant analysis, LDA),是一种监督学习算法,也叫做Fisher线性判别(Fisher Linear Discriminant, FLD),是模式识别的经典算法,它是在1996年由Belhumeur引入模式识别和人工智能领域的。...
分类:
其他 时间:
2014-02-22 07:23:38
收藏:
0 评论:
0 赞:
0 阅读:
375
(新)高精度的最小公倍数!!...
分类:
其他 时间:
2014-02-22 05:28:14
收藏:
0 评论:
0 赞:
0 阅读:
358
Raucous Rockers
You just inherited the rights to n previously unreleased songs recorded by the popular group Raucous Rockers. You plan to release a set of m compact disks with a selectio...
分类:
其他 时间:
2014-02-22 08:39:08
收藏:
0 评论:
0 赞:
0 阅读:
294
在公司最近的一个项目中,需要实现一键分享功能,在这里我使用的是第三方平台ShareSDK,将使用经验与大家分享
先看效果图
主界面
分享界面
由于第一次使用,所以需要先进行新浪授权,授权界面
分享结果图片
下面开始介绍如何使用ShareSDK实现微博的分享功能(其他平台的类似)
首先看一下项目的结构图...
分类:
移动平台 时间:
2014-02-22 07:59:29
收藏:
0 评论:
0 赞:
0 阅读:
468
Oracle10g在Windows7下安装时,在安装的版本检测时提示目前oracle不支持version为6.1的windows OS系统的时候。
如下图所示:
或者:
看来是oracle不能够识别Windows 7 ,只需要修改refhost.xml文件,让Oracle能够识别到操作系统的类型。
点击oracle安装文件,查找refhost.xml文件...
分类:
数据库技术 时间:
2014-02-22 09:25:17
收藏:
0 评论:
0 赞:
0 阅读:
379
1、在ASP.net中,母版页加载js文件,页面中调用时出错。
加载顺序问题,要在母版页头部增加基本JS文件引用
2、datatable()未生效。错误信息:oCol
is Undefined
因为tr里td个数和thead中th个数不匹配,所以导致无法格式化表格。
3、tablesorter加载失败。
908行,£$€被当作异常字符了,暂时删除后,可以正常使用了。...
分类:
Web开发 时间:
2014-02-22 06:04:12
收藏:
0 评论:
0 赞:
0 阅读:
303
在Source Insight集成Astyle
下载地址:
Windows平台下也有好多人都喜欢用SourceInsight编辑C/C++程序,但是SourceInsight没有提供对代码格式化的功能,如果将Artistic Style集成到SourceInsight中,那就可以为它扩展出代码格式化的功能了。
假定AStyle.exe的目录是“C:\Artisti...
分类:
其他 时间:
2014-02-22 09:19:19
收藏:
0 评论:
0 赞:
0 阅读:
755
ORACLE数据库Dataguard dg broker 3大模式升级方式 主备库互相切换...
分类:
数据库技术 时间:
2014-02-22 07:14:57
收藏:
0 评论:
0 赞:
0 阅读:
662
问题描述:
今天同事的iphone(ios7)通过USB插上电脑后,iTunes无法正常连接iphone。
问题解决方案:
1、确保计算机的“服务”中的“bonjour 服务”是“已启用”状态。
2、拔下USB,重启iphone,重启后手机会有提示,同意即可。
3、通过USB连接电脑,这时经过安装驱动后,在设备管理...
分类:
其他 时间:
2014-02-22 06:52:37
收藏:
0 评论:
0 赞:
0 阅读:
385
/*
ID: haolink1
PROG: ariprog
LANG: C++
*/
//#include
#include
#include
#include // std::sort
//#include
using namespace std;
typedef unsigned int u_int;
class Solution{
public:
int beg...
分类:
其他 时间:
2014-02-22 06:51:38
收藏:
0 评论:
0 赞:
0 阅读:
352
/*
ID: haolink1
PROG: milk3
LANG: C++
*/
//#include
#include
using namespace std;
//Use global varible to reduce the function DFS's aguments
const short max_value = 20;
bool bucket_state[max_value...
分类:
其他 时间:
2014-02-22 07:56:32
收藏:
0 评论:
0 赞:
0 阅读:
342
Mysqlyy.cpp文件主要实现 mysql数据库连接池。
自己实现了mysql连接池之后,发现连接池就那么回事。系统一开始就申请一大堆东西在那里放着,等着你来用,省的你需要的时候申请,使用完之后又要释放的麻烦。
这里面没有使用内存池,如果一个服务器不是用内存池跑几个月是不是极限了?记得我大二的时候写屏幕实时显示的程序,没用内存池,跑了半个小时就挂掉了。
当然现在有了tcmalloc这等高...
分类:
数据库技术 时间:
2014-02-22 07:55:32
收藏:
0 评论:
0 赞:
0 阅读:
483
/*
ID: haolink1
PROG: numtri
LANG: C++
*/
//Note: the key point of this problem is you shoud add the vlaue of number
//triangle from bottom to top, then you can see the optimal substructure.
//So you...
分类:
其他 时间:
2014-02-22 05:33:13
收藏:
0 评论:
0 赞:
0 阅读:
373
针对UIView和UIViewController的设计原则,当前个人的一些思考...
分类:
其他 时间:
2014-02-22 07:54:37
收藏:
0 评论:
0 赞:
0 阅读:
417
/*
ID: haolink1
PROG: pprime
LANG: C++
*/
// For this problem, the usaco give two hint:
// 1 Generate the palindromes and see if they are prime.
// 2 Generate palindromes by combining digits properly...
分类:
其他 时间:
2014-02-22 06:49:45
收藏:
0 评论:
0 赞:
0 阅读:
420
queue(队列)数据结构的基础,一种特殊的线性表,队列就像排队打饭一样先排的先打,后排的后打;只能从前面出,从后面进;
queue q ;
q.pop()
删除第一个元素
q.push( x )
将 x 添加到最后
q.front() 访问第一个元素
q.back()
访问最后一个元素
q.empty()
判断队列是否为空
q.size()
判断队列中元素的个数
在...
分类:
其他 时间:
2014-02-22 09:23:16
收藏:
0 评论:
0 赞:
0 阅读:
533
什么是Map/Reduce,看下面的各种解释:
(1)MapReduce是hadoop的核心组件之一,hadoop要分布式包括两部分,一是分布式文件系统hdfs,一部是分布式计算框,就是mapreduce,缺一不可,也就是说,可以通过mapreduce很容易在hadoop平台上进行分布式的计算编程。
(2)Mapreduce是一种编程模型,是一种编程方法,抽象理论。...
分类:
其他 时间:
2014-02-22 06:47:48
收藏:
0 评论:
0 赞:
0 阅读:
392
package cn.itcast.user.tool;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.List;
/**
* jdbc封装类
* clazz...
分类:
其他 时间:
2014-02-22 07:19:46
收藏:
0 评论:
0 赞:
0 阅读:
287
文件|目录的默认权限与隐藏权限
当我们创建一个文件或者目录时即使我们未对其非配权限,其也会存在默认权限
[root@localhost tmp]# mkdir newdir
[root@localhost tmp]# ls -dl newdir
drwxr-xr-x 2 root root 4096 02-21 11:10 newdir
[root@localhost tmp]# touch...
分类:
其他 时间:
2014-02-22 07:52:39
收藏:
0 评论:
0 赞:
0 阅读:
321