由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Amazon首轮电面SDET
相关主题
Amazon电面面经BB店面经
昨天的二轮电面一些oop的概念
bloomberg面经请问如何准备C/C++面试
MS sdet面经 + bloomberg电面面经面试又挂了!难过死
another c++ questionMS SDET onsite 面经
小公司面经a家电面(老题)
面试题分享及感想amazon的面经
关于polymorphism和overloadingAmazon 电面经历
相关话题的讨论汇总
话题: what话题: projects话题: difference话题: test话题: sdet
进入JobHunting版参与讨论
1 (共1页)
m***y
发帖数: 44
1
在这个版上受益多多,今天也贡献点
题目都不难,可惜自己太紧张,答的结结巴巴
1. introduce yourself
2. walk me through your projects
3. how to test your projects (choose 1 of them)
4. what is OO design
5. what is the difference of override and overload
6. what is the difference of array and linked list
7. coding: return the first unrepeated character from a string
and how to test it
8. any question?
h**********8
发帖数: 267
2
赞, and bless

【在 m***y 的大作中提到】
: 在这个版上受益多多,今天也贡献点
: 题目都不难,可惜自己太紧张,答的结结巴巴
: 1. introduce yourself
: 2. walk me through your projects
: 3. how to test your projects (choose 1 of them)
: 4. what is OO design
: 5. what is the difference of override and overload
: 6. what is the difference of array and linked list
: 7. coding: return the first unrepeated character from a string
: and how to test it

z******a
发帖数: 582
3
Bless
c****u
发帖数: 243
4
bless
c*********t
发帖数: 2921
5
7. 问的是什么?
是不是给个string,比如 "abcdefgaacgd",要返回b,还是要返回b的index?
是不是要做两次scan,要用一个数组存字符出现的次数,第一次scan,update存次数的
数组,
第二次scan,返回第一个次数等于1的字符?
谢谢!

【在 m***y 的大作中提到】
: 在这个版上受益多多,今天也贡献点
: 题目都不难,可惜自己太紧张,答的结结巴巴
: 1. introduce yourself
: 2. walk me through your projects
: 3. how to test your projects (choose 1 of them)
: 4. what is OO design
: 5. what is the difference of override and overload
: 6. what is the difference of array and linked list
: 7. coding: return the first unrepeated character from a string
: and how to test it

h******n
发帖数: 68
6
是的,就是这个思路,数组的size=256即可

【在 c*********t 的大作中提到】
: 7. 问的是什么?
: 是不是给个string,比如 "abcdefgaacgd",要返回b,还是要返回b的index?
: 是不是要做两次scan,要用一个数组存字符出现的次数,第一次scan,update存次数的
: 数组,
: 第二次scan,返回第一个次数等于1的字符?
: 谢谢!

h******n
发帖数: 68
7
bless
r*******y
发帖数: 1081
8
7, should return the first repeated ?

【在 m***y 的大作中提到】
: 在这个版上受益多多,今天也贡献点
: 题目都不难,可惜自己太紧张,答的结结巴巴
: 1. introduce yourself
: 2. walk me through your projects
: 3. how to test your projects (choose 1 of them)
: 4. what is OO design
: 5. what is the difference of override and overload
: 6. what is the difference of array and linked list
: 7. coding: return the first unrepeated character from a string
: and how to test it

c****p
发帖数: 6474
9
这样的话还得记录字符第一次出现的位置。
是不是可以这样搞:
第一遍的时候先初始化成0,
某个字符第一次出现的时候记录出现的位置(第一个字符记为1),
第二次出现的时候(即该字符对应的值大于0)记为-1。
然后第二遍再扫一遍就可以。

【在 c*********t 的大作中提到】
: 7. 问的是什么?
: 是不是给个string,比如 "abcdefgaacgd",要返回b,还是要返回b的index?
: 是不是要做两次scan,要用一个数组存字符出现的次数,第一次scan,update存次数的
: 数组,
: 第二次scan,返回第一个次数等于1的字符?
: 谢谢!

1 (共1页)
进入JobHunting版参与讨论
相关主题
Amazon 电面经历another c++ question
唉,电面差点毁了,不知道还有没有戏小公司面经
GOOG首轮电面一般多久给回音?面试题分享及感想
Sigh,刚才的Interview又砸了关于polymorphism和overloading
Amazon电面面经BB店面经
昨天的二轮电面一些oop的概念
bloomberg面经请问如何准备C/C++面试
MS sdet面经 + bloomberg电面面经面试又挂了!难过死
相关话题的讨论汇总
话题: what话题: projects话题: difference话题: test话题: sdet