软技能一般是被低估的。差点儿全部的软件project师都知道要关注技术的提高,但你忽视的软技能非常可能会影响你的职业生涯。以下我将介绍24个对程序猿非常重要的软技能,以及我对这些技能的看法和感受。 1、学会怎样学习 学无止境。 2、制定阅读规划 我的生活经常没有规划。我也不知道这次我是否可以真正地运 ...
分类:
其他好文 时间:
2017-06-01 14:42:58
阅读次数:
203
E-UTRA channel bandwidths per operating band (36.101) E-UTRA channel bandwidths per operating band (36.101) ...
分类:
其他好文 时间:
2017-05-31 11:57:58
阅读次数:
183
题目地址:http://codevs.cn/problem/1053/ 分析: 模拟 代码: var s:string; a:array['a'..'z'] of longint; i,j,t,n:longint; k:char; d:array[1..100000] of longint; fun ...
分类:
其他好文 时间:
2017-05-29 21:40:47
阅读次数:
224
B. Suffix Structures Bizon the Champion isn't just a bison. He also is a favorite of the "Bizons" team. At a competition the "Bizons" got the followin ...
分类:
其他好文 时间:
2017-05-29 19:13:40
阅读次数:
250
Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), ..., (an, bn) which makes sum of ...
分类:
其他好文 时间:
2017-05-28 21:42:41
阅读次数:
249
UVA 11294 - Wedding 题目链接 题意:有n对夫妻,0号是公主。如今有一些通奸关系(男男,女女也是可能的)然后要求人分配在两側。夫妻不能坐同一側。而且公主对面一側不能有两个同奸的人,问方案 思路:2-set,建图。一共2n个人,设偶数是丈夫,奇数是妻子。左側为false,右側为tru ...
分类:
其他好文 时间:
2017-05-28 21:38:08
阅读次数:
164
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. For example: Given num = 38, the process is like: ...
分类:
其他好文 时间:
2017-05-28 13:59:27
阅读次数:
184
CGAffineTransform matrix = CGAffineTransformMake(1, 0, tanf(15 * (CGFloat)M_PI / 180), 1, 0, 0); UIFontDescriptor *desc = [ UIFontDescriptor fontDescr ...
分类:
移动开发 时间:
2017-05-28 10:04:45
阅读次数:
402
传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1699 [Usaco2007 Jan]Balanced Lineup排队 Description 每天,农夫 John 的N(1 <= N <= 50,000)头牛总是按同一序列排队. 有一天, ...
分类:
其他好文 时间:
2017-05-27 21:48:41
阅读次数:
215
执行环境及作用域执行环境及作用域执行环境及作用域执行环境:定义了变量和函数有权访问的其他数据,决定了它们各自的行为,每个执行环境都有一个与之关联的变量对象,环境中定义的所有变量和函数都保存在这个对象中*全局执行环境:是最外围的一个执行环境,全局执行环境直到应用程序退出时才会被销毁;1.每个函数都有自... ...
分类:
其他好文 时间:
2017-05-26 15:54:14
阅读次数:
173