CRM即客户关系管理系统,建设的中心是客户;项目管理系统,建设的中心是项目,可当对客户和项目需要同时管理和关注时,有没有一个既方便又实用的解决方案软件呢?
答案是有的,即“客户项目管理系统”。
【现状分析】
在企业日常办公中会使用到OA系统、CRM系统、项目管理系统等,它们或许是不同厂家不同产品,部门中的项目建设也是烟囱式搭建,形成了数据孤岛和屏障,业务之间数据无法流转、打通,领导层...
分类:
其他 时间:
2015-03-31 14:46:02
收藏:
0 评论:
0 赞:
0 阅读:
336
今天下午做了一道题。leetcode merge intervals 属于比较难的题目。
首先用collections.sort 给list排序,然后用两个while loop来比较两个interval 的start, end 。 从而生成新的interal,再插入到新的list 返回结果。
下面给出自己的代码:
/*
50 Merge Intervals
https://leetcode.com/problems/merge-intervals/
Given a collection o...
分类:
其他 时间:
2015-03-31 14:45:52
收藏:
0 评论:
0 赞:
0 阅读:
222
练习4-4原文Exercise 4.4. Recall the definitions of the special forms and and or from chapter 1: ● and: The expressions are evaluated from left to right. If any expression evaluates to false, false is...
分类:
其他 时间:
2015-03-31 14:45:42
收藏:
0 评论:
0 赞:
0 阅读:
139
全球培养最多杰岀人士的哈佛大学,图书馆的自彐室墙上刻着二十道训言,最前面的六则是;
1.此刻打盹,你将做梦;而此刻学习,你将圆梦。
2.我荒废的今日,正是昨日殒身之人祈求的明日。
3.觉得为时己晚的时候,恰恰是最早的时候。
4.勿将今日之事拖到明日。
5.学习的痛苦是暂时的,未学到的痛苦是终生的。
6.学习这件事,不是缺乏时间,而是缺乏努力。
有位葡萄牙的亿万富翁在接受采访时,记者问...
分类:
其他 时间:
2015-03-31 14:45:32
收藏:
0 评论:
0 赞:
0 阅读:
259
Given a binary tree, return the level order traversal of its nodes' values. (ie, from left to right, level by level).
For example:
Given binary tree {3,9,20,#,#,15,7},
3
/ 9 20
...
分类:
其他 时间:
2015-03-31 14:45:02
收藏:
0 评论:
0 赞:
0 阅读:
122
题目要求:
A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:
The left subtree of a node contains only nodes with keys less than the node's key....
分类:
其他 时间:
2015-03-31 14:44:43
收藏:
0 评论:
0 赞:
0 阅读:
244
看看效果:
PC端:
QQ截图20150327215831
移动端:
QQ截图20150327215915
一、HTML
首页
前端开发
...
分类:
其他 时间:
2015-03-31 14:44:23
收藏:
0 评论:
0 赞:
0 阅读:
252
一摞书,2个操作,一个操作是在书堆上加一本,第二个将前K个书翻转
看别人用Splay树做的,但是可以用双端队列模拟,因为K个书之后的书位置已经定下来了,所以只需要记录在队列头加书还是尾加书
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int main(){
int...
分类:
其他 时间:
2015-03-31 14:44:12
收藏:
0 评论:
0 赞:
0 阅读:
319
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int main()
{
vector a(100000000,0);
srand((int)time(0));
for(int i=0;i<100000000;i++)
{
...
分类:
其他 时间:
2015-03-31 14:43:43
收藏:
0 评论:
0 赞:
0 阅读:
298
今天介绍一款游戏叫做《AA》,是在最近在IOS上刚刚流行起来的一款游戏,非常虐心但有非常好玩,现在我们讲它在tangide(GameBuilderV2.0)上的利用控件UICanvas实现它。在线运行:http://www.tangide.com/apprun.html?appid=preview721427350809280
在线编辑:http://www.tangide.com/gamebui...
分类:
其他 时间:
2015-03-31 14:43:22
收藏:
0 评论:
0 赞:
0 阅读:
329
子类构造函数先调用父类。子类保留父类一块空间。
以一个例子分析:
class A
{
public:
A() { }
~A() { cout<<"~A"<<endl; }
};
class B:public A
{
public:
B(A &a):_a(a)
{
...
分类:
其他 时间:
2015-03-31 14:43:03
收藏:
0 评论:
0 赞:
0 阅读:
232
Valid Number
Validate if a given string is numeric.
Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true
Note: It is intended for the pro...
分类:
其他 时间:
2015-03-31 14:42:52
收藏:
0 评论:
0 赞:
0 阅读:
224
在前面的文章《OpenCV中feature2D学习——FAST特征点检测》中讲了利用FAST算子进行特征点检测,这里尝试使用FAST算子来进行特征点检测,并结合SIFT/SURF/BRIEF算子进行特征点提取和匹配。
I、结合SIFT算子进行特征点提取和匹配
由于数据类型的不同,SIFT和SURF算子只能采用FlannBasedMatcher或者BruteForceMatcher来进行匹配(参...
分类:
其他 时间:
2015-03-31 14:42:33
收藏:
0 评论:
0 赞:
0 阅读:
1348
/**
* 跳转至系统相册
*
* @param activity
* 活动实例
* @param requestCode
* 请求码
*/
public static void startSystemAlbumForResult(Activity activity,
int requestCode) {
Int...
分类:
其他 时间:
2015-03-31 14:42:24
收藏:
0 评论:
0 赞:
0 阅读:
215
Given a string S and a string T, count the number of distinct subsequences of T in S.
A subsequence of a string is a new string which is formed from the original string by deleting some (can be none)...
分类:
其他 时间:
2015-03-31 14:42:02
收藏:
0 评论:
0 赞:
0 阅读:
87
题目链接:点击打开链接
题意:
给定n个区间
下面n个区间
从每个区间中任选一个数。则一共选出了n个数
给出K(
问选出的n个数中 最高位是1的个数 占n个数的百分之K以上的概率是多少。
先求出对于第i个区间 ,选出的数最高位是1的概率P[i]
dp[i][j] 表示前i个数选了j个最高位是1的概率.
///////////////////////////////////...
分类:
其他 时间:
2015-03-31 14:41:52
收藏:
0 评论:
0 赞:
0 阅读:
187
JDK1.7安装配置图文教程
1.安装jdk 双击jdk-7-windows-i586
安装文件
等待“下一步”变亮点击
可以根据需要更改安装路径,如无特殊要求,可以点击“下一步”,开始安装出现安装界面,稍后会弹出jre
安装对话框。
选择jre7安装目录,如无特殊需要默认安装路径,点击“下一步”,进入安装界面,安装完
成后会出现如下对话框,点击“完成”
2.配置JDK环境...
分类:
其他 时间:
2015-03-31 14:40:42
收藏:
0 评论:
0 赞:
0 阅读:
135
Treap
Treap是一种动态平衡的BST(Binary Search Tree),它每个节点拥有键值和优先级两种属性。对于键值而言,它是一颗排序二叉树。对于优先级而言,这棵树是堆(优先级最高的是根节点)。可以证明Treap中插入,删除和查找的期望时间复杂度均为O(logn)。关于Treap的更多介绍,可见刘汝佳《训练指南》P230。
一般我们用Treap就是用来替代平衡二叉...
分类:
其他 时间:
2015-03-31 14:40:22
收藏:
0 评论:
0 赞:
0 阅读:
225