由买买提看人间百态

topics

全部话题 - 话题: microsofe
1 (共1页)
l**********r
发帖数: 4612
1
【 以下文字转载自 JobHunting 讨论区 】
发信人: quantx (X矿工), 信区: JobHunting
标 题: Microsof bing onsite面经疑问
发信站: BBS 未名空间站 (Thu Dec 1 22:49:17 2011, 美东)
d. coding: Binary tree的width.(经典题)
啥是width?直径?
a. 两个n-ary tree. 找到相同的最大子树(经典题)
这个咋做?
a. 从袋里每次拿两个球,一次拿到两个蓝色球的概率是50%,估计袋中共有多少球。
没看懂。一共几种颜色?
Z**S
发帖数: 1211
2
Qie. Using one of my own papers as an example, google
scholar showed 150 solid citations, Microsofe Citation
only showed 25, the other 125 went missing. The
citation index based on microsoft citation therefore
is a severe underestimate -- a wrong data point.
Got it? Logic, do you have any?

find but Microsoft Citation cannot? Just get an idea.
is true, it will be a systematic error which applies to all researchers and
scholars. For the comparison purpose, it is still a fair game for all
authors.... 阅读全帖
c**0
发帖数: 9331
3
来自主题: FleaMarket版 - [求购]DELL Inspiron 15 $415
我想要的物品:
DELL 15 $415
单张面值:
$329
可接受的价格(必须明码标价!):
$415
物品新旧要求:
Dell Home has Dell Inspiron 15 15.6\" Dual Core Laptop for $329 with free
shipping
It features:
Intel Pentium Dual Core T4300 2.1GHz
3GB Shared Dual Channel DDR2 at 800MHz
250GB SATA Hard Drive (5400RPM)
Intel Graphics Media Accelerator X4500HD
8X CD/DVD Burner (Dual Layer DVD+/-R Drive)
Glossy, widescreen 15.6 inch display (1366x768)
6-cell battery
Dell Wireless 1397 802.11g Half Mini-Card
Integrated 1.3 MP Webcam
Vista Home
Microsof
q****x
发帖数: 7404
4
来自主题: JobHunting版 - Microsof bing onsite面经疑问
d. coding: Binary tree的width.(经典题)
啥是width?直径?
a. 两个n-ary tree. 找到相同的最大子树(经典题)
这个咋做?
a. 从袋里每次拿两个球,一次拿到两个蓝色球的概率是50%,估计袋中共有多少球。
没看懂。一共几种颜色?
S**N
发帖数: 182
5
来自主题: JobHunting版 - Microsof bing onsite面经疑问
球那个 和颜色有关系吗?
http://www.mitbbs.com/mitbbs_article_t.php?board=JobHunting&gid
p*****2
发帖数: 21240
6
来自主题: JobHunting版 - Microsof bing onsite面经疑问
是不是4个球呀?
比如3 blue, 1 other color
(3/4)*(2/3)=50%
S**N
发帖数: 182
7
来自主题: JobHunting版 - Microsof bing onsite面经疑问
汗。。 往前面翻几页看我的答案 哈哈
p*****2
发帖数: 21240
8
来自主题: JobHunting版 - Microsof bing onsite面经疑问

不好意思,刚才算错了。更正了。
p*****2
发帖数: 21240
9
来自主题: JobHunting版 - Microsof bing onsite面经疑问
第二题除了brute force以外还有啥好办法吗?
l*********y
发帖数: 142
10
来自主题: JobHunting版 - Microsof bing onsite面经疑问
两个n-ary tree. 找到相同的最大子树(经典题)?
不知到咋做?
s******n
发帖数: 226
11
来自主题: JobHunting版 - Microsof bing onsite面经疑问
great common subtree?
f*******t
发帖数: 7549
12
来自主题: JobHunting版 - Microsof bing onsite面经疑问
为啥要新开一帖问。。。
H***e
发帖数: 476
13
来自主题: JobHunting版 - Microsof bing onsite面经疑问
这题是经典题么?怎么解的?
b. 字符串分词,一列单词之间没有空格,怎么样划分(经典题)
e.g. bedbathandbeyond -> bed bath and beyond
扩展问题是 对于上面例子如何保证得到的是bed bath and beyond 而不是bed
bat hand beyond?
p*****2
发帖数: 21240
14
来自主题: JobHunting版 - Microsof bing onsite面经疑问

DP呀。简单来写。
List Split(string s)
{
if(s.Length==0)
return null;
List output;
for(int i=0;i {
if(isWord(s.SubString(0,i+1))
{
output.Add(s.SubString(0,i+1));
List tmp=Split(s.SubString(i+1,s.Length-i-1));
if(tmp!=null)
output.AddRange(tmp);
break;
}
}
return output;
}
H***e
发帖数: 476
15
来自主题: JobHunting版 - Microsof bing onsite面经疑问
这个不是brute force吗?
p*****2
发帖数: 21240
16
来自主题: JobHunting版 - Microsof bing onsite面经疑问

不是说DP都是brute force吗?
c****m
发帖数: 179
17
来自主题: JobHunting版 - Microsof bing onsite面经疑问
I also thinks your code is the brute-force way with recursion.
If you want to do DP for this problem, you should have another hashmap for
memorisation to save the computation.
p*****2
发帖数: 21240
18
来自主题: JobHunting版 - Microsof bing onsite面经疑问

for
Sure.
l*********y
发帖数: 142
19
来自主题: JobHunting版 - Microsof bing onsite面经疑问
如果两个tree 的size 是 m 和 n, brute force 的话是 O(mn)
有O(m+n)的吗?
p*****2
发帖数: 21240
20
来自主题: JobHunting版 - Microsof bing onsite面经疑问
不过我不太明白这段话。
扩展问题是 对于上面例子如何保证得到的是bed bath and beyond 而不是bed
q****x
发帖数: 7404
21
来自主题: JobHunting版 - Microsof bing onsite面经疑问
就是不同切分方式权重不同。选权重最高的。
p*****2
发帖数: 21240
22
来自主题: JobHunting版 - Microsof bing onsite面经疑问

还是整个句子更有意义呢?不然权重怎么决定呢?
l*******0
发帖数: 176
23
来自主题: JobHunting版 - Microsof bing onsite面经疑问

就是说,bedbathandbeyond 切词以后可能有不同的组合。如何返回那个概率最大的组
合。
这一题的话显然 bed bath and beyond要比bed bat hand beyond切出来的结果好。他
开始还要我定义切词结果的好坏。
w****x
发帖数: 2483
24
来自主题: JobHunting版 - Microsof bing onsite面经疑问
对阿, 用什么办法能保证切出bedbathandbeyond => bed bath and beyond
w****x
发帖数: 2483
25
来自主题: JobHunting版 - Microsof bing onsite面经疑问
是不是还是像图边权重那样, bed bath 比bed bat 权重大?
s******n
发帖数: 226
26
来自主题: JobHunting版 - Microsof bing onsite面经疑问
简单写一下把
input char a[n];
func(char* a){
int n = strlen(a);
int f[n];
for(int i=0;i int max =0;
for(int j=i;j>=0;j--){
if(isWord(a,j,i) && f[j]+1>max){
max = f[j]+1; f[i] = max;
// prev array to bookkeep
// max can be defined using different standard.
}
}
}
}
Y**B
发帖数: 144
27
来自主题: JobHunting版 - Microsof bing onsite面经疑问
第二题咋做阿?
r****t
发帖数: 10904
28
来自主题: JobHunting版 - Microsof bing onsite面经疑问
你没做完,y 是未知的。
k***t
发帖数: 276
29
来自主题: JobHunting版 - Microsof bing onsite面经疑问
697个球493蓝球也行。
2*493*492=697*696
c**********e
发帖数: 2007
30
来自主题: JobHunting版 - Microsof bing onsite面经疑问
Yes. Also
4060个球 2871蓝球
7423个球 5249蓝球
i***0
发帖数: 8469
31
来自主题: JobHunting版 - 今天的结果很重要
等microsofe bing& ads center feedback
准备amazon 面试
linkedin and google are tomorrow
在家待业二十天了
G***n
发帖数: 877
32
来自主题: JobHunting版 - 有人做过微软的online test么。
上周又裁了2100,开始向养着做Research那群人动刀了.看来我以前的贴子没有说错,上
次只是第一波.
http://blogs.seattletimes.com/microsoftpri0/2014/09/18/microsof
s******y
发帖数: 28562
33
来自主题: shopping版 - Is this netbook a good deal?
Dell Inspiron Mini 10.1" Netbook
$299
# 3-cell battery, 3 hours 45 minutes run time*
# 1GB installed memory
# 160GB hard drive
# Intel® Atom™ Z530 (1.6GHz/533MHz FSB/512K Cache)
# 10.1" widescreen display (1024 x 576)
# Built-in 1.3MP webcam
# Built-in wireless WLAN 802.11b/g wirelessly connects to the Internet
# Watch your favorite TV shows with the internal digital TV tuner
# 3-in-1 Media Card Reader
# McAfee SecurityCenter with anti-virus, anti-spyware, firewall, 30-Days
# Microsof
M******n
发帖数: 315
34
Microsofe Academic Search里有各个领域的杂志排名
这个咚咚好像比较好用
w****a
发帖数: 3231
35
来自主题: Missouri版 - St Louis 哪里有茶馆?
Central West End
圣路易斯, 密苏里州
map:
http://maps.google.com/maps?q=central+west+end&rls=com.microsof
x**r
发帖数: 2377
36
yes, if it's pure software, it's possible for microsoft to come later and st
ay longer, especially when there is only one major computing platform ---- w
indows, which will give microsoft inborn advantages. But this time, microsof
t is not only late but out of the industry, no advantages any more.
I didn't say microsoft will die, of course, IPad could only take 1/4 to 1/3
of PC's market, but it's big enough to cause microsoft's downturn. In the pa
st 20 years, microsoft's stock price could be fl
b******n
发帖数: 552
37
瞧瞧这bar,buggy coders就是这么混进来的。。。
h***o
发帖数: 5030
38
转贴到这什么意思?
是不是楼主在joke版被封了自己不能转?
S*******n
发帖数: 1721
39
来自主题: Seattle版 - Ex-Microsoft executive撞死了
驾驶记录不怎么样,以前他带着他84岁的老母就在哥伦比亚河上迫降过。
这下好了,把自己和儿子一起搞死,还害死别人两孩子。
http://www.dailymail.co.uk/news/article-2388525/Former-Microsof
http://www.zillow.com/homes/1645-RAMBLING-LN-98039_rb/
S******2
发帖数: 248
z*********n
发帖数: 94654
Y******u
发帖数: 1912
42
http://blogs.wsj.com/corporate-intelligence/2013/06/07/microsof
Anyone who did the bulk of their gaming in the Super Nintendo 7974.OK +0.11%
era would find much of today’s console market a bit tough to comprehend.
Remember four kids sitting on a living room floor passing around two
controllers? Those days are long gone, replaced by cinematic extravaganzas
designed to be played alone, or against online adversaries. Mario Kart they
are not.
But here’s a more subtle change coming up in Microsoft's ... 阅读全帖
Y**L
发帖数: 385
43
来自主题: TrustInJesus版 - 老七回答下吧
(给骂基督徒愚蠢的人一个证实自己不蠢的机会)
一个简单的测试常识和科学素养的问题:地球的北极是否有一个巨大的洞?
如果google或youtube一下 north pole hole你会看到很多惊人的图片/录像。
http://www.google.com/search?q=north+pole+hole&rls=com.microsof
http://www.youtube.com/results?search_query=hole+north+pole&sea
看看这位怎么讲。
http://www.youtube.com/watch?v=fCk3Mz7o9Ks
不要太轻易否定啊,要看看下面的 video及UIUC的30-day animation和历史图片。如果
下载多张历史图片放动画,北极似乎确实有个洞,虽然被brush掉了。
http://www.youtube.com/watch?v=z22RqApTcXo
http://arctic.atmos.uiuc.edu/cryosphere/
http://arctic.atmos.uiuc.edu/cryosphere/arc... 阅读全帖
p*****l
发帖数: 721
44
来自主题: Hubei版 - 推荐台式机
你们要pre-owned的吗?
IBM Certified Used ThinkCentre M50 (RUB) Scratch & dent
A8189RUB
Add to cart
Your price
$135.15*
IBM Web Price
$159.00*
In stock**
Intel Pentium 4 2.8GHz with HT Technology
Microsoft Windows XP Professional Edition
1024MB/2048MB
Scratch & dent
40GB
CD-RW/DVD
Ethernet
None
Sold Separately
3 months limited

IBM Certified Used ThinkCentre S51 (YC3)
A8171YC3
Add to cart
Your price
$152.15*
IBM Web Price
$179.00*
In stock**
Intel Pentium 4 3GHz with HT Technology
Microsof
l****z
发帖数: 29846
45
Windows 10 NTFS分区EFS加密不能成功解密
这个问题在technet上已经很多人反应了,是TH2的问题。TH2除了这个问题还有其他的
很多问题
如果这些个功能对你很重要,建议退回10240,感觉这个TH2 update的bug比原版更多。
。。
Microsoft yanks latest Windows 10 release from its download server
http://www.zdnet.com/article/microso...wnload-server/
Microsoft suddenly decides not to offer Windows 10 November update via Media
Creation Tool
http://www.neowin.net/news/microsoft...-creation-tool
Microsoft explains disappearance of the Windows 10 November Update from
Media tool
http://www.winbeta.or... 阅读全帖
1 (共1页)