CRM即客户关系管理系统,建设的中心是客户;项目管理系统,建设的中心是项目,可当对客户和项目需要同时管理和关注时,有没有一个既方便又实用的解决方案软件呢?
答案是有的,即“客户项目管理系统”。
【现状分析】
在企业日常办公中会使用到OA系统、CRM系统、项目管理系统等,它们或许是不同厂家不同产品,部门中的项目建设也是烟囱式搭建,形成了数据孤岛和屏障,业务之间数据无法流转、打通,领导层...
分类:
其他好文 时间:
2015-03-31 14:48:46
阅读次数:
209
今天下午做了一道题。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:47:07
阅读次数:
130
练习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:56
阅读次数:
156
全球培养最多杰岀人士的哈佛大学,图书馆的自彐室墙上刻着二十道训言,最前面的六则是;
1.此刻打盹,你将做梦;而此刻学习,你将圆梦。
2.我荒废的今日,正是昨日殒身之人祈求的明日。
3.觉得为时己晚的时候,恰恰是最早的时候。
4.勿将今日之事拖到明日。
5.学习的痛苦是暂时的,未学到的痛苦是终生的。
6.学习这件事,不是缺乏时间,而是缺乏努力。
有位葡萄牙的亿万富翁在接受采访时,记者问...
分类:
其他好文 时间:
2015-03-31 14:48:14
阅读次数:
97
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:46:03
阅读次数:
146
题目要求:
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:46:43
阅读次数:
168
看看效果:
PC端:
QQ截图20150327215831
移动端:
QQ截图20150327215915
一、HTML
首页
前端开发
...
分类:
其他好文 时间:
2015-03-31 14:46:21
阅读次数:
121
一摞书,2个操作,一个操作是在书堆上加一本,第二个将前K个书翻转
看别人用Splay树做的,但是可以用双端队列模拟,因为K个书之后的书位置已经定下来了,所以只需要记录在队列头加书还是尾加书
#include
#include
#include
#include
#include
#include
#include
using namespace std;
int main(){
int...
分类:
其他好文 时间:
2015-03-31 14:47:11
阅读次数:
123
#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:46:07
阅读次数:
109
今天介绍一款游戏叫做《AA》,是在最近在IOS上刚刚流行起来的一款游戏,非常虐心但有非常好玩,现在我们讲它在tangide(GameBuilderV2.0)上的利用控件UICanvas实现它。在线运行:http://www.tangide.com/apprun.html?appid=preview721427350809280
在线编辑:http://www.tangide.com/gamebui...
分类:
其他好文 时间:
2015-03-31 14:43:38
阅读次数:
166
子类构造函数先调用父类。子类保留父类一块空间。
以一个例子分析:
class A
{
public:
A() { }
~A() { cout<<"~A"<<endl; }
};
class B:public A
{
public:
B(A &a):_a(a)
{
...
分类:
其他好文 时间:
2015-03-31 14:45:57
阅读次数:
142
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:56
阅读次数:
129
在前面的文章《OpenCV中feature2D学习——FAST特征点检测》中讲了利用FAST算子进行特征点检测,这里尝试使用FAST算子来进行特征点检测,并结合SIFT/SURF/BRIEF算子进行特征点提取和匹配。
I、结合SIFT算子进行特征点提取和匹配
由于数据类型的不同,SIFT和SURF算子只能采用FlannBasedMatcher或者BruteForceMatcher来进行匹配(参...
分类:
其他好文 时间:
2015-03-31 14:45:41
阅读次数:
802
/**
* 跳转至系统相册
*
* @param activity
* 活动实例
* @param requestCode
* 请求码
*/
public static void startSystemAlbumForResult(Activity activity,
int requestCode) {
Int...
分类:
其他好文 时间:
2015-03-31 14:43:43
阅读次数:
152
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:13
阅读次数:
138
题目链接:点击打开链接
题意:
给定n个区间
下面n个区间
从每个区间中任选一个数。则一共选出了n个数
给出K(
问选出的n个数中 最高位是1的个数 占n个数的百分之K以上的概率是多少。
先求出对于第i个区间 ,选出的数最高位是1的概率P[i]
dp[i][j] 表示前i个数选了j个最高位是1的概率.
///////////////////////////////////...
分类:
其他好文 时间:
2015-03-31 14:43:59
阅读次数:
123