新浪科技讯 北京时间11月25日早间消息,作为欧盟负责数字市场的最高级官员,欧盟委员会副主席安德鲁斯·安西普(Andrus Ansip)周一表示,他对于大型科技公司滥用垄断地位的可能性感到担忧。不过他同时表示,对谷歌的调查不应操之过急。
欧洲议会正发起一项行动,试图迫使谷歌进行分拆。安西普表示,他怀疑,一些大公司正滥用数字市场的地位。
他在接受采访时表示:“我们怀疑,看门人和市...
分类:
其他好文 时间:
2014-11-25 10:49:42
阅读次数:
195
成功创业者都有一些相似的特质,但哪些特质是天生的,哪些是可以后天领悟的,这是我们在 AppWorks 经常讨论的题目。昨天在 Entrepreneur 读到这篇 5 Signs From Childhood
That You Were Destined to Be an Entrepreneur,自己本身就是创业者的作者 John Rampton,分享了几个他认为跟后来创业成功有关的学生时期迹...
分类:
其他好文 时间:
2014-11-25 10:47:52
阅读次数:
154
主要介绍:socket、bind、listen、connect、accept、send、sendto、recv、recvfrom、close、shutdown
原理可看:...
分类:
其他好文 时间:
2014-11-25 10:47:06
阅读次数:
279
先看题:http://acm.hdu.edu.cn/showproblem.php?pid=1176这道题的状态转移方程不难找到dp[i][j] += max(dp[i + 1][j + 1],dp[i-1][j+1],dp[i][j+1]) 表示在第j秒的时候在i这个位置能接到的馅饼数 可是有两....
分类:
其他好文 时间:
2014-11-25 10:47:31
阅读次数:
229
无标题文档 标题一 内容 标题二 内容 标题三 内容 标题四 内容 标题五 内容
分类:
其他好文 时间:
2014-11-25 10:44:31
阅读次数:
201
在平常写代码的时候相信大家 都会为每次创建 button或者其他的系统控件的 那么多行代码而烦恼 ,那么怎么能有个简单的方法来快速创建一个button呢。废话不多说,直接进入主题!1.第一种方法 便利构造器 写一个UIButton的子类,添加一个便利构造器的方法,将所要传递的参数 都直接在调用便利构...
分类:
其他好文 时间:
2014-11-25 10:45:31
阅读次数:
225
移步原帖传送门:cocos2d-x动画加速与减速动画是游戏的必然要素之一,在整个游戏过程中,又有着加速、减速动画的需求。以塔防为例子,布塔的时候希望能够将游戏减速,布好塔后,则希望能将游戏加速;当某个怪被冰冻后,移动速度减缓,而其他怪的移动速度不变。cocos2d-x引擎为我们提供了很强大的接口,下...
分类:
其他好文 时间:
2014-11-25 10:45:31
阅读次数:
118
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)You have t...
分类:
其他好文 时间:
2014-11-25 10:46:27
阅读次数:
196
Mysql中使用group_concat时,出现Row 1 was cut by GROUP_CONCAT()异常。group_concat默认的最大拼接长度,是1024。把所有子节点的ID,用逗号分隔拼起来,group_concat(CAST(B.`id`aschar))asidStr当节点比较多...
分类:
其他好文 时间:
2014-11-25 10:44:27
阅读次数:
182
/// /// 将集合类转换成DataTale /// /// 集合 /// public static DataTable ToDataTable(IList list) { DataTable result = new DataTable(); if (list == null) { r...
分类:
其他好文 时间:
2014-11-25 10:44:05
阅读次数:
170
use LOL gocreate table zuoye(code int primary key identity(1,1),name varchar(20),class char(3),sex char(2),teacher varchar(20),birth datetime ,height ...
分类:
其他好文 时间:
2014-11-25 10:40:48
阅读次数:
291
1 #include 2 #include 3 #include 4 using namespace std; 5 struct Set { 6 bool mark[128]; 7 Set() { 8 memset(mark, 0, sizeof(mark))...
分类:
其他好文 时间:
2014-11-25 10:42:27
阅读次数:
192
链表。 1 #include 2 #include 3 #include 4 5 #define MAXM 1001 6 #define MAXN 100001 7 8 int un[MAXM], ub[MAXM]; 9 int v[MAXN];10 int next[MAXN];11 1...
分类:
其他好文 时间:
2014-11-25 10:41:40
阅读次数:
219
关于margin属性的介绍margin:20px 上 右 下 左 都是20pxmargin:20px 40 px 上 下 20px 左 右 40pxmargin:20px 40px 60px 上20px 左 右 40px 下 60pxmargin:20px 40px 60px 80px 上 右 下 ...
分类:
其他好文 时间:
2014-11-25 10:40:19
阅读次数:
195
正则表达式 元字符: ? : 最多匹配一次 * : 匹配0次或者任意多次 + : 匹配一次以上 {n} : 匹配n次 {n,} :最少匹配n次 {,m} : 最多匹配m次
分类:
其他好文 时间:
2014-11-25 10:38:40
阅读次数:
147
把两种状态化成2*n-2的一条线上的一种状态即可。很容易想到。高斯列主元法,不知为什么WA。要上课了,不玩了。。。逃了一次课呢。。#include #include #include #include #include using namespace std;double const eps=1e-...
分类:
其他好文 时间:
2014-11-25 10:37:37
阅读次数:
208