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 | |
c****u 发帖数: 243 | |
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 | |
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的字符? : 谢谢!
|