由买买提看人间百态

topics

全部话题 - 话题: repeated
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
e*******e
发帖数: 987
1
来自主题: FleaMarket版 - [+] repeating
对方ID:
repeating
Feedback (+/-/0):
+
具体交易内容:
GC
A7
发帖数: 963
2
来自主题: FleaMarket版 - [+] repeating
对方ID:
repeating
Feedback (+/-/0):
+
具体交易内容:
我的评价:
l******c
发帖数: 2555
3
write a program that finds all repeated substrings in the string and provide
the complexity of this program. how can you make it to perform better in
time and memory
l******c
发帖数: 2555
4
Do not understand,
for string "abcab", the repeated substring should be "a", "b", "ab", how to
apply your algorithm

if
*
s********l
发帖数: 998
5
all repeated substring?
suppose we have a string like this "abcdabc"
should "ab" be considered as one? how about "a"?

to
d****o
发帖数: 1055
6
the longest repeated substring problem is the problem of finding the longest
substring of a string that occurs at least twice.
比如
input: banana
ouput: ana
bruth force way是O(n^3),我只做出来这个,弱啊。
哪位大牛来解释一下?
b*******d
发帖数: 750
7
来自主题: JobHunting版 - Find consecutive repeated string

duplicate
可以用修改后的suffix tree么?build suffix是linear time,虽然那个算法非常复杂
,很难一下写出来。但是其上每个node的path(从根开始的path)都是一个substring
。把每个node设计成
node {
char c;
List startPos;// 记录下这个node的从根到该node的path的起始点在原
string的位置。是个list因为可能有很多个这种string。
int pathLen; // 记录下这个node的从根到该弄得的path的长度,即该substring的
length。
}
build suffix tree的时候,如果add node时候,发现该node已经存在,说明该
substring已经存在,如果存在一个startPos + pathLen == curStartPos,说明存在一
个连续repeated的substring。
应该是linear time
a*******y
发帖数: 1040
8
来自主题: JobHunting版 - Find consecutive repeated string
ok, I got it
use a suffix array, then sort it( remember index when you sort), now
repeated substring must occur in neigbor, compare two by two to find two
they have common prefix, and if the common prefix length equal to their
index difference +1 , that would be the answer
e********3
发帖数: 229
9
请问如果在面试中面到需要用suffix tree的,该如何写好?一般不会要你当场写出来
吧。但是又没有一个特定的APT,要怎么写那代码呢?
还有一个就是longest repeated substring这题可以构造suffix tree解答,但是要用o
(n)构造的话一些隐式节点就无法显示,而最后要的节点可能就是隐式节点,请问这个
问题要怎么解决呢?关于suffix tree的我是看以下这个文章,不知道是不是我的理解
有偏差,望指教:http://www.if-yu.info/2010/10/3/suffix-tree.html#id7
g****y
发帖数: 240
10
对于longest repeated substring problem. 可能的solution只可能是internal node
,不可能是implicit node。

用o
p*****3
发帖数: 488
11
http://leetcode.com/2011/05/longest-substring-without-repeating
丢个简单的:
class Solution {
public:
int lengthOfLongestSubstring(string s) {

unordered_map mp;
int ret = 0;
int beg = 0;

for (int i = 0; i < s.length(); i++)
{
if (mp.find(s.at(i)) != mp.end() && mp[s.at(i)] >= beg)
beg = mp[s.at(i)] + 1;

mp[s.at(i)] = i;
ret = max(ret, i - beg + 1);
}

... 阅读全帖
b*******7
发帖数: 907
12
楼下的router到楼上后信号不好,于是又刷了一台dd-wrt,第二台设成repeater
bridge,然后用speedtest测了一下,对其效果很失望。用primary router的差信号有
30/20Mbps,用secondary router降到5Mbps以下。
大家都怎么解决长距离无线上网的问题?不想拉网线,不想用powerlink
i***e
发帖数: 9429
13
是的,我那时搞了个NETGEAR,效果很好,不过`也只用了几个月,换了router后就没再
用了。
这个貌似和我现在用的router 差不多,我那个是AC66U,到目前为止很满意。

repeater
b*******7
发帖数: 907
14
我是把所有wireless router都刷成dd-wrt(前提是要支持,可以去dd-wrt官网数据库
里面查),然后把secondary router的wireless mode设成repeater即可。
L****n
发帖数: 12932
15
complain goes to complain board. and i'll answer them within the time
required timeframe.
repost here is not recommended. repeat action against advise will be
considered as violation.
C****A
发帖数: 583
16
小武,没见班长说REPEAT吗,感觉一幅图只要不重复刷屏没事
还在关注UGAZ DGAZ?
m********o
发帖数: 2088
17
来自主题: Stock版 - Repeat It Again 没啥问题
You can do something again. You can repeat it again
w********2
发帖数: 16371
18
来自主题: Stock版 - Repeat It Again 没啥问题
反正我能看懂。我经常英语和中文都写的别人看不懂。查了一下:
http://forum.wordreference.com/threads/can-we-say-repeat-it-aga
r*******u
发帖数: 8732
19
【 以下文字转载自 Vancouver 讨论区 】
发信人: rainbowwu (Ms.Wu :)), 信区: Vancouver
标 题: Lin Dan of China repeats as champion
发信站: BBS 未名空间站 (Sun Aug 5 19:28:11 2012, 美东)
h*h
发帖数: 27852
20
【 以下文字转载自 Piebridge 讨论区 】
发信人: hsh (三胡), 信区: Piebridge
标 题: repeating, 你去不去揭发everflying/fengzhiwu
发信站: BBS 未名空间站 (Fri Oct 29 00:32:55 2010, 美东)
丫叫 yue wang, transportation engineering, 在加州交通部,开始工作一年多,工
资都找到了
ut-austin, ms in transportation engineering
r*******u
发帖数: 8732
21
来自主题: CanadaNews版 - Lin Dan of China repeats as champion (转载)
【 以下文字转载自 Vancouver 讨论区 】
发信人: rainbowwu (Ms.Wu :)), 信区: Vancouver
标 题: Lin Dan of China repeats as champion
发信站: BBS 未名空间站 (Sun Aug 5 19:28:11 2012, 美东)
I********L
发帖数: 1339
22
来自主题: Baseball版 - 讨论:哪个更难REPEAT
棒球和橄榄球被认为是很难连续冠军的。这两个运动中,哪个更难一些呢?
分析:
我很难决定,棒球的赛季长,很多事情都可能发生,外卡拿总冠军近几年也屡有发生,
争夺外卡就更是拼得你死我活, 因为每个联盟就有一个名额。季后赛采用多场赛制,
这也就避免了一些偶然因素,强队大多数情况下可以走得很远。进入WS,两队都是到了
身体,心里的极限,漫长的赛季,紧张的季后赛氛围,已经把全队耗得差不多了。为了
最后的荣誉谁坚持到最后,谁笑得最好。
橄榄球赛季短,但强度大,每个联盟季后赛有两个名额,而且季后赛采用一场定胜负,
做客的球队要想赢球更是难上加难。但是superbowl 在中立球场举行,关键就看哪个球
队发挥得好,一锤子买卖,偶然性因素比棒球大。
结论:
综上所述,最终结论是橄榄球更难REPEAT.大家同意否?
小问题:除了养鸡外,哪几个队还得过连续WS冠军?
A**d
发帖数: 13310
23
This back and forth is getting old. OK, I'll repeat it one more time: 45-7
A*****a
发帖数: 52743
24
没重复全
[在 ARod (Alex Rodriguez) 的大作中提到:]
:This back and forth is getting old. OK, I'll repeat it one more time:
45-7
m********e
发帖数: 5088
25
来自主题: Football版 - 痔风呢?关于好鸟能否repeat
好鸟可以repeat分区冠军
a****a
发帖数: 208
26
来自主题: Golf版 - will phil repeat?
I bet Phil will be in contension, but fail to repeat.
b***r
发帖数: 4186
27
来自主题: Running版 - 今天1mile repeat又惨败而归
你中间停多少时间啊?
我也觉得这种repeat对腿部肌肉的要求很高,经常到后来腿没有力气了。
多练练深蹲把。我在gym认识的trainer,让我们手提20lb哑铃,作50个深蹲蛙跳...
O*****s
发帖数: 1540
28
来自主题: Running版 - 今天1mile repeat又惨败而归
mile repeat似乎是对马拉松比较有效, 练5k可能nx800更好些。。
w****1
发帖数: 4931
29
the most important pre-race workout today: 3 x 1 mile repeats. I warmed up
for about 15 minutes, @ 8:00 pace, felt really sloppy. Then it was time to
get serious. I chose a loop of a little more than a mile to run. First 1/3
uphill, second 1/3 downhill, finishing on a flat stretch. I went out at a
strong pace with 2/2 breathing, going uphill, against the wind. The pace
quickly became punishing. I looked at my 305, says 5:59. Then it dropped to
6:06. This is bad, I thought. I had to pick up my pa
b*****4
发帖数: 97
30
Congrats! I wish my mile repeats could have the same quality (not time wise
of course). I feel I always reserved sth in the first one or two.
w****1
发帖数: 4931
31
It is actually very hard to push yourself to a truly all-out mile. When you
go out as if this is your only mile today and survive it, you will run good
repeats. Go out as if this is the last mile you will ever run in your life,
you will run a good one-mile.:)

wise
w****1
发帖数: 4931
32
来自主题: Running版 - mile repeats today
after about 5 easy miles, I went to the track for 4 x 1 mile repeats with
800m jogging recovery. Was gonna run the first mile at tempo pace but went a
bit too fast. After the third mile, my legs felt shot and done. In the
fourth mile I made an effort to lengthen my strides by slightly raising the
knees, and it resulted in the fastest mile of the day. 6:03, 5:53, 5:56, 5:
52. That would give me a 5K time of 18:25 or so, pretty far from decent 5K
racing shape. Hope to get some speed back in my leg... 阅读全帖
R*****s
发帖数: 41236
33
来自主题: Running版 - mile repeats today
nice! mile repeats are pretty hard...

a
the
w****1
发帖数: 4931
34
来自主题: Running版 - Ritz's mile repeats
http://newyorkmarathon.runnersworld.com/2010/11/ritz-this-is-the-new-age-of-marathoning.html
Inspired by Ritz' mile repeats, I did tempo intervals this morning, 8 x 1
mile @ 6:40 on the treadmill (0.5%), with 400m/2:30 recovery in between. ---
50% slower than Ritz's pace...that's just weak.
y******n
发帖数: 4527
35
来自主题: Running版 - interval--mile repeat
6:20*3 is not very geiliable. It will be nicer to have a 6 repeat interval.
There are lots of wild animals here, including deer, swan, goose, bun,
coyote and so on. If I would have a pet, I like to have a Husky.
r********r
发帖数: 2912
36
nice

Repeats
M**u
发帖数: 10158
37
赞,这个速度好快阿,晚上跑步要小心,有的时候路上有小坑,坑人。。。

Repeats
b***i
发帖数: 10018
38
这个很不可靠啊。而且怎么recovery只有十几秒?

Repeats
y******n
发帖数: 4527
39
Good shape to run a 5K.

Repeats
j***y
发帖数: 5098
40
nnd,
我儿子的最大心跳也没你快

Repeats
i*********5
发帖数: 19210
41
我的310XT心率器应该是好的,至少在190及以下是好的。
在3月份时我曾经企图在大半夜跑mile repeats,但那时刚东眠醒来,根本无法保持pace(本身也没算好,所以一开设就跑太快了)。结果跑了800米就不得不停下来,胸紧的不行,感觉要犯心脏病了。当时最高心率也就219。
有些担心,于是见了家庭医生,给我弄了个Holter Monitor戴了48小时,有十来个电极点接在身上。
那是4月中的事了,由于右腿受伤,再加上天冷,就只是在最后去还holter时跑去诊所,稍微push了一下,希望能把心率push到200以上。可Garmin只显示出192。后来报告出来了,证实了只有最后那15分钟心率高,到了190,而睡觉时最低为44。
因此,我相信在200以下,Garmin应该还是很准的。
o*******r
发帖数: 4921
42
你这心跳跟我们的比起来就是跑车vs靠骡拉啊.

Repeats
m**k
发帖数: 18660
43
来自主题: Running版 - Mile repeats 之间应该歇(jog)多久?
repeats是不是比interval更长休息时间?

whereas
f*******n
发帖数: 5241
44
来自主题: Running版 - Mile repeats 之间应该歇(jog)多久?
我建议你还是买本书吧。书上有每个BQ时间的训练计划,有针对性的具体的pace和
间歇时间。6x800m这种一般好像是1:30的rest interval。Mile repeats一般是400m
的RI。
不过我个人的体会是它的pace都太aggressive了,休息时间又太短。而且训练周期前
期和后期的Interval Pace一样。如果真能照它的计划练下来,最后跑马拉松的时间
一定会比goal快很多。
比如这个4:15马拉松的计划,到最后要求8x800m @ 3:58 (1:30RI),按照Yasso 800's
的标准,这岂不是要跑四小时以下了吗?

speed
to
i*********5
发帖数: 19210
45
来自主题: Running版 - Mile repeats 之间应该歇(jog)多久?
done. 4x mile repeats @ 10.5 mph, jog 0.25 mi @ 6 mph.
boy, it's not easy!
y******n
发帖数: 4527
46
来自主题: Running版 - Mile repeats 之间应该歇(jog)多久?
nice speed.
I simply can not finish the mile repeat @ my 10k pace-35''.
You need to update your 5K time soon.
o*******r
发帖数: 4921
47
来自主题: Running版 - Mile repeats 之间应该歇(jog)多久?
靠,太给力了。

done. 4x mile repeats @ 10.5 mph, jog 0.25 mi @ 6 mph.
boy, it's not easy!
g***e
发帖数: 5292
48
1. 试了多人游戏,没找到可组队的模式
2. 试了邀请,也不行
3. 在菜单中找到 battle.net ,关联了暴雪和xbox live账号,可总是提示可关联账号
这 repeat of souls 是不是就是不能联 xbox live 啊!
i*******8
发帖数: 7955
49
要和路人玩需要把游戏里的network setting改成Public,要组队玩需要invite
friends。如果invite不了有可能是因为NAT是strict,要去xbox one的settings/
network里面确认。关联不管理battle net和live和玩多人游戏无关。
另外这游戏的名字是reaper of souls,不是repeat
R*C
发帖数: 5511
50
19.99一盆,个还不小,起码2,3加仑。我看介绍的卡片没写是不是Repeat的。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)