由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - google 昨天的phone interview
相关主题
Linux context switch 高通 面试题。??问个经典面试题
一个stack怎么sortSoftware Engineer - 4G Protocol Stack - Multiple positons/levels
谁有较好的iterative后序遍历binary tree的代码?CareerCup question
c++ 的 temp variable 是产生在heap 还是 stack 上?还是career cup
{0xFACEB00C>>2 in decimal}@fb.com到底是啥?还有两个题。
一道面试题amz电面:关于用两个stacks实现一个queue 求问
也问两个算法题Groupon一个店面题. sort with 3 stacks.
Arista Networks面经2已经很久连phone interview都没有了
相关话题的讨论汇总
话题: directory话题: stack话题: interview话题: phone话题: test
进入JobHunting版参与讨论
1 (共1页)
r**d
发帖数: 90
1
听声音是个老印
写一个程序
so that \.. point to parent directory,\. point to current directory
for example: c:\windows\temp\..\.\..\test
return c:\test
b******v
发帖数: 1493
2
可以用个stack,碰到".."就弹出,碰到"."就忽略
把路径扫描一遍后,剩下的就是最简路径

【在 r**d 的大作中提到】
: 听声音是个老印
: 写一个程序
: so that \.. point to parent directory,\. point to current directory
: for example: c:\windows\temp\..\.\..\test
: return c:\test

r**d
发帖数: 90
3
这个题本身并不难,stack 可以吗?
如果是 c:\a\b\c\d\..\..\..\..
你的方法好象不对

【在 b******v 的大作中提到】
: 可以用个stack,碰到".."就弹出,碰到"."就忽略
: 把路径扫描一遍后,剩下的就是最简路径

r****o
发帖数: 1950
4
为啥不对?不是c:\吗?

【在 r**d 的大作中提到】
: 这个题本身并不难,stack 可以吗?
: 如果是 c:\a\b\c\d\..\..\..\..
: 你的方法好象不对

y*c
发帖数: 904
5
可以就在input string上操作,模拟stack,不需要additional stack
e***n
发帖数: 42
6
可否请问一下搂主应聘的职位?
K******g
发帖数: 1870
7
如果仅仅是解析这个string,那就不要stack
如果后面的路径名是动态输入的,就要stack了

【在 y*c 的大作中提到】
: 可以就在input string上操作,模拟stack,不需要additional stack
1 (共1页)
进入JobHunting版参与讨论
相关主题
已经很久连phone interview都没有了{0xFACEB00C>>2 in decimal}@fb.com到底是啥?
Adobe面试题, 怎么能把很多文件读到Memory ?一道面试题
phone interview也问两个算法题
3rd Amazon phone interview (1hr)Arista Networks面经2
Linux context switch 高通 面试题。??问个经典面试题
一个stack怎么sortSoftware Engineer - 4G Protocol Stack - Multiple positons/levels
谁有较好的iterative后序遍历binary tree的代码?CareerCup question
c++ 的 temp variable 是产生在heap 还是 stack 上?还是career cup
相关话题的讨论汇总
话题: directory话题: stack话题: interview话题: phone话题: test