由买买提看人间百态

topics

全部话题 - 话题: delimeter
(共0页)
r*******y
发帖数: 290
1
来自主题: JobHunting版 - 说说某著名软件公司的onsite面试
公司就不说了
面试一共见了4个人,都是上来就白板写程序,每人一道问题
1.写 char* strtok(char* str, const char* delimeter) code.
用法为:第一次调用 char* p = strtok(string, delimeter);
以后调用 p=strtok(NULL, delimeter);
关键:函数内部用static char* temp存储第一次pass的string
2.美国的coin设计为1,5,10,25,任意给定一个change,
用greedy algorithm可以算出最少所需要的coins,设计一套coins,
证明greedy algorithm给的solution不是最少的
然后在写一个algorithm,给定四个coin值,找出最少的coins数
数学上来说,min x1+x2+x3+x4 st. ax1+bx2+cx3+dx4=change
可以用DP
3. 给定5张牌,写一个函数判断是否是two pairs
4. 给定400个array,每个array有若干integers,找出这些array的
合集,交集,
A**u
发帖数: 2458
2
5 rounds.
1. HR talk
2a. 一个字典D. 给一个字符串, 判断是否能split成字典中的单词. 比如"thecow"行,
"pxtry"不行.
2b. 数据流,每次都一个数,找个策略能使得等概率的取个数
2c. 一个机器人从(0,0)可以东西南北走1步. 现在条件 sum(x digits) + sum(y
digits) <= K. (12,6) 计算为 (1+2) + 6 = 9. 证明 K有限的话,这个机器人访问的
点是finite的
3. 设计一个问卷系统.
老师使用时候,给这个系统提供questions.txt, 这个系统解释,运行.
这个questions.txt的格式自己定义.
4. Longest Palindrome, Sort colors, min stack
5. 设计一个功能.
char* strToken(char* str, char* delimeter)
对str = "abc;xy,zz;;;"
第一次调用StrToken(str,";,"), 返回abc
第二次调用StrTo... 阅读全帖
r*******y
发帖数: 290
3
来自主题: Programming版 - excel 数据中间有‘|’ (转载)
find and replace大概是最快的方法了
或者用excel的import,指定delimeter为|

发帖数: 1
4
Mobileye, CES 2018
"In regards to sensing, Shashua said one of the two central areas involves
detecting road users and spatially compact objects, including vehicles,
pedestrians, cyclists, traffic signs, and traffic lights, which Shashua said
is mature technology and in production already; while the second area of
sensing -- parsing the roadway such as lane marks, road edges, path
delimeters, and drivable paths -- is an "open problem" that Mobileye is
continuing to work on."
這裡沒有說天氣和夜晚情況。
f********m
发帖数: 197
5
来自主题: Statistics版 - 但谁能解释下truncover 吗?
这里用的是list input,daisyyellow之间没有delimeter,所以只读进去前5字母作为
Type.后面的字母当成是第一个variable的一部分,被忽略了。跟truncover的用法无关。
而如果用Column input或者format input并且最后一个variable的长度取到了行末,例如
input Type $ 1-5 Color $ 6-17;
这时候不用truncover的话得到的是
Type color
daisy
用的话则得到
Type color
daisy yellow
:)
x******7
发帖数: 122
6
来自主题: Statistics版 - SAS BASE 六一儿童节
几个小时前考了BASE, 内容几乎可以认为全部来自题库50+70+123,62题中大概20题
可以认为是变体
错了3题,大概知道错了下面两题/三题 顺便回忆了其它的一些题
1.
data temp;
infile xxx;
date="01feb1980"d

how to generate ship_note in the form “Feb 01, 1980”
A.ship_note=put(date,date9.)
B.ship_note=put(date,date9.,worddate20.)
C.ship_note=put(date,worddate20.)
D.ship_note=input(.....)
我选了错误答案B,
2.
x y
5 1
4 6
5 4
data one two other;
if x ge 5 then output one;
else if y le 5 then output two;
else output other;
How many obs in dataset one, two and other?
毫不犹豫选... 阅读全帖
(共0页)