o****3 发帖数: 5100 | 1 Good for buffs. They take care of themselves.
I wish OU could do the same. |
|
|
|
l*****s 发帖数: 1754 | 4 Jax 被buff了吗?为毛100%ban?有阵子没打排位了。以前我几乎把把选jax都没问题,
怎么现在jax把把都被ban?反而狗头没人ban了。 |
|
|
a*******y 发帖数: 1040 | 6 要归了,处理下俺的东西,有需要的请联系我,都买的话有折扣
Paul C. Buff ALienBees B1600 Flash Unit with bulb including silver field
reflector, shipping cover, 150W lamp, flashtube, sync cord, power cord
Excellent condition 半年前从FM 买的,只用过几次而已,那个哥们也是几乎没用 ---
-$300
64" inch photograph translucent white umbrella, only used about 5 times and
in great shape ----$47
13-foot Heavy Duty Light Stand (LS3900) works very well with above flash
and umbrella, purchased 5 months ago and in great new shape --$50
64" White Front Diffusion Fabr... 阅读全帖 |
|
a***a 发帖数: 12425 | 7 湖里的鸭子我只能认得麻辣的(Mallard)和考特(American Coot,还是酷特?),下
面的四只,从远处以极快的速度游来,然后又以迅雷不及掩耳盗铃之势游走。我下意识
地按快门儿,不知这是什么鸭种。是不是没有变对颜色的麻辣的鸭?
(1)
(2)
(3)
(4)
(5)
(6)
(7)
(8)
(9)
注:版猪查出来这是Buff Orpington Mallard,大赞啊! |
|
i*****s 发帖数: 15215 | 8 放狗了,是Buff Orpington Mallard |
|
|
a***a 发帖数: 12425 | 10 那超出我想像空间了,怨不得我狗不出来,我就压根儿不知道啥是buff。。。淆习。 |
|
S**I 发帖数: 15689 | 11 ☆─────────────────────────────────────☆
libei (Bei) 于 (Wed Jan 11 15:43:39 2012, 美东) 提到:
面试官是Google+组的,
一上来她说看到我简历上的一篇测试自动化的文章,读了一遍,感觉"very
informative",让后让我介绍一下相关经验。让我小高兴了一下。
第一题是coding,做的还算顺利,后来她评价说所有的cases都覆盖到了。可能算是过
关吧。
第二题我想复杂了,然后在她提示下才解决。自我感觉很不好。其实sort一下就差不多
了,不过我往复杂的树结构想去了。虽然树结构确实能解决这个问题,不过当时我解释
得很不清楚。反正很不爽。
最后瞎聊时间,她说我提到的测试自动化实践和Google内部的基本完全一样blahblah。
。。,不过我觉得这点也算不上加分吧,是个人进google一段时间后都能学会。就怕她
觉得我想问题太复杂,直接negative。
大家有啥建议想法??
☆─────────────────────────────────────☆
peking2 (myfac... 阅读全帖 |
|
f*******t 发帖数: 7549 | 12 #include
#include
#include
#define ENTRYNOTFOUND 0
#define ENTRYFOUND 1
#define NOTCOMPLETE 2
struct Trie;
void FindWords(Trie *root);
struct Trie
{
Trie();
~Trie();
Trie *children[26];
bool isEnd;
};
Trie::Trie()
{
for(int i = 0; i < 26; i++)
children[i] = NULL;
isEnd = false;
}
Trie::~Trie()
{
for(int i = 0; i < 26; i++) {
if(children[i]) {
delete children[i];
children[i] = NULL;
}
}
}
... 阅读全帖 |
|
a***e 发帖数: 413 | 13 Given n pairs of parentheses, write a function to generate all combinations
of well-formed parentheses.
For example, given n = 3, a solution set is:
"((()))", "(()())", "(())()", "()(())", "()()()"
Recursive 的写出来了,但DP的不知道怎么做,看了别人的code也不太懂,尤其是
for(int l=0;l
buff[i].push_back(buff[j][k]+"("+buff[i-j-1][l]+")");
在做啥,为啥idx要i-j-1 等完全不清楚。
另外,大家有推荐学习DP的方法么?多谢
class Solution {
public:
vector generateParenthesis(int n) {
vecto... 阅读全帖 |
|
d****n 发帖数: 1637 | 14 又拓展了一下,给出parent link和buffed level computation
#include
#include
int *buff=NULL;
int buff_size=1024;
int buff_used=0;
int level(int query ){
while( buff[buff_used-1]
{
if ( buff_size <=buff_used ){
buff_size<=1;
buff=(int *)realloc( buff,sizeof(int)*buff_size );
}
buff_used++;
buff[buff_used]=(buff_used+1 )*(buff_used+1+1)/2;
}
... 阅读全帖 |
|
f*******t 发帖数: 7549 | 15 平衡括号的题可以用贪心法做吧
#include
#include
#include
#include
#define INVALIDCHAR -1
using namespace std;
char *balance(char *str)
{
int len = strlen(str);
if(len < 1)
return NULL;
char *buff = (char*)calloc(len + 1, 1);
stack left;
for(int i = 0; i < len; i++) {
if(str[i] == '(')
left.push(i);
else if(str[i] == ')') {
if(left.empty()) {
buff[i] = INVALIDCHAR;
co... 阅读全帖 |
|
c*****a 发帖数: 808 | 16 大牛快来看看
Combination Sum II
Given a collection of candidate numbers (C) and a target number (T), find
all unique combinations in C where the candidate numbers sums to T.
Each number in C may only be used once in the combination.
Note:
All numbers (including target) will be positive integers.
Elements in a combination (a1, a2, … , ak) must be in non-descending
order. (ie, a1 ≤ a2 ≤ … ≤ ak).
The solution set must not contain duplicate combinations.
For example, given candidate set 10,1,2... 阅读全帖 |
|
F********e 发帖数: 1942 | 17 ☆─────────────────────────────────────☆
wuyt (WEC) 于 h 提到:
要求不高由现在 10点血/0.5秒 改成 20点血/1秒就满足了,这样可以对飞龙和光头躲
闪电多一点限制
☆─────────────────────────────────────☆
Kaaka (Yang Xiu) 于 (Tue Jul 12 11:38:30 2011, 美东) 提到:
这也太猛了 15/1秒还差不多
☆─────────────────────────────────────☆
wuyt (WEC) 于 (Tue Jul 12 11:51:56 2011, 美东) 提到:
如果20/1这样改,对小狗部队的确有点猛,现在10/0.5有点放烟花的感觉,如果15/1成
了放鞭炮了
☆─────────────────────────────────────☆
Kaaka (Yang Xiu) 于 (Tue Jul 12 12:03:53 2011, 美东) 提到:
20/1 zvp基本不用打了
☆───────... 阅读全帖 |
|
s******e 发帖数: 493 | 18 Ok. I give you my ans and please help me check them.
1. p = buff[0](actually buff[] is gone.) So if the memory that buff[] has is
relocated to some other program right before lvalue b can be assigned to point
to that memery space, we will not be able to get buff[0].
2. ???
3. Yes. But line 2002 should be "static char buff[8]" to return array buff[].
4. Yes it will be excuted.
5. ???
6. No. the reason is in 1. and 3.
7. char * anotherfunction(char*);
8. ???
9. select count(gid)
from tablename
gro |
|
发帖数: 1 | 19 读4
这道题给了我们一个Read4函数,每次可以从一个文件中最多读出4个字符,如果文件中
的字符不足4个字符时,返回准确的当前剩余的字符数。现在让我们实现一个最多能读
取n个字符的函数
int read(char *buf, int n) {
int res = 0;
for (int i = 0; i <= n / 4; ++i) {
int cur = read4(buf + res);
if (cur == 0) break;
res += cur;
}
return min(res, n);
}
读4 II Read N Characters Given Read4的拓展,那道题说read函数只能调用一次,而
这道题说read函数可以调用多次
int read(char *buf, int n) {
for (int i = 0; i < n; ++i) {
if (readPos == writ... 阅读全帖 |
|
|
d****n 发帖数: 1637 | 21 my shabby code for questions 4.
//File resovle.c
#include
#include
#include
#define MAXLINECHARSIZE 1000
inline int fsplit(char *line, char **items, char delim);
int main(int argc, char * argv[]){
/***prepare && allocate buffer/space***/
int n,nbytes=100, maxcol=10, maxchar=1000;
char **items;
{
items=(char **) malloc(maxcol*sizeof(char *));
int i;
for(i=0; i
items[i]=(char*)malloc(maxchar*sizeo... 阅读全帖 |
|
C*****l 发帖数: 3211 | 22 1、BUFF问题
武松打虎的时候有醉拳BUFF。
不认为卢俊义可以打2个老虎。
无BUFF卢俊义战力可能仅仅比带BUFF武松强一点点。林冲估计还要比醉酒武松差一点点。
2. 马步军
关林是马军TOP2首领(卢俊义除外)。鲁武是步军TOP2首领。单挑的实力差距没有排名差
距那么大,因梁山以马军为主。
打虎是地上作战,马军头领无马时候的攻击力和步军头领差不了太多。(参考林冲大战
杨志,当然杨志是八骠骑,然二龙山排名在鲁智深之下,武松之上,实力应在伯仲之间)
3. 李逵问题说明
李逵的爆发很强,但是战斗力跟鲁智深林冲没法比。有点跟程咬金比秦琼一样。
而且老虎里面有幼齿,并且是带刀袭击老虎。武松是拿拳头干偷袭自己的老虎。 |
|
n********e 发帖数: 1655 | 23 我的2014白色马六在一周前交给了body shop换后bumper。上周五告诉我弄好了,结果
一看bumper明显比车身其他面板要白。于是要求重做。本周三做好,我大致看了下,肯
定谈不上完美,但比上次好了些,我也不想再折腾了就提车了。昨天洗车发现车顶和后
备箱盖上有很多像是锈点的东西,棕黄色的,用手摸漆面能很明显的感觉到不平滑。有
些大的用指甲可以直接抠掉,就像是灰尘一样。但实际肯定不是灰尘,因为有些棕黄色
的点点根本就扣不掉。尝试clay bar,第一遍可以看到clay上面有很多棕黄色的物质,
但第二遍就不明显了。
今天把车带回body shop,告诉他们原来是没有这些东西的,放在你们这里一个多星期
之后就成这样了,怎么办?那个manager看了下说这是rail rust,时间长了肯定会有。
我说可是我之前一直没有,我有pictures。他后来说这个可以buff&polish,我说buff
不是伤漆么我不想做。他说buff不会的,只有sand才会。但后来他又说,这个你要找
dealer去file warranty claim,这个是在warranty范围之内的。我说,这怎么就成了
... 阅读全帖 |
|
f*******t 发帖数: 7549 | 24 这个是很基本的数据结构,建议看一下wiki
我前几天实现了它,只有基本的insert和search,没有对查找child list进行优化,代
码贴出来供参考:
#include
#define MAX_LENGTH 64
using namespace std;
static char buff[MAX_LENGTH];
class Trie {
public:
Trie();
Trie(char value);
bool Insert(const char *str);
bool Search(const char *str) const;
void PrintAll(int pos) const;
private:
char _value;
Trie *_sibling;
Trie *_child;
};
Trie::Trie()
{
_value = 0;
_sibling = NULL;
_child = NULL;
}
Trie::Trie(char value)
... 阅读全帖 |
|
f*******t 发帖数: 7549 | 25 #include
#include
#include
#define BUFFSIZE 1024
using namespace std;
char buff[BUFFSIZE];
int idx;
void enumerate(const string& s, int pos)
{
if(pos == s.size()) {
if(idx == 0)
printf("{Empty}\n");
buff[idx] = 0;
printf("%s\n", buff);
}
else if(pos != 0 && s[pos] == s[pos-1]) {
enumerate(s, pos+1);
}
else {
buff[idx] = s[pos];
idx++;
enumerate(s, pos+1);
idx--;
enume... 阅读全帖 |
|