Redian新闻
>
BA里程订的AA票 航班延误应该找谁BA还是AA去argue一下?
avatar
BA里程订的AA票 航班延误应该找谁BA还是AA去argue一下?# Money - 海外理财
m*e
1
据观察系里老师的工资参差不齐,越牛的当然工资越高。向想各位senior发考题讨教一
下涨工资方面的成功经验。
目前了解的学校正常涨工资模式有两种,一种是每年的raise,这个比例很小,而且有
时候要看业绩,每个学校可能略有不同。另外就是promotion的时候工资会有个相对大
一些的调整。想向各位大佬了解一下除此之外还有哪些涨工资的机会和成功经验?什么
情况下,怎么和系里提出要求比较有利呢?多谢赐教!
avatar
m*u
2
The Pacific saury, Cololabis saira, is a member of the family
Scomberesocidae. This saury, which is a food source in some East Asian
cuisines, is also known by the name mackerel pike
avatar
a*r
3
Question:
reverse the string based on the word (or you can understand as reversing
words), for example,
Input string: I Am Engineer
Output string shall be: Engineer Am I
我是菜鸟, 那位达人能用C/C++编码一下,跪谢!
avatar
M*e
4
AA也不靠谱, 之前定的航班整个消失了,换了新的航班和时间. 也没有通知. 我就只好
改签了之后的航班
现在AA航班晚点, 后面的航班只能改签一次只好作废... 这个能跟AA/BA argue一下申
请补偿吗?
avatar
H*z
5
最主要是多拿funding。
avatar
B*g
6
自己搜搜吧,这个是老题了。

【在 a********r 的大作中提到】
: Question:
: reverse the string based on the word (or you can understand as reversing
: words), for example,
: Input string: I Am Engineer
: Output string shall be: Engineer Am I
: 我是菜鸟, 那位达人能用C/C++编码一下,跪谢!

avatar
i*e
7
contact AA

【在 M****e 的大作中提到】
: AA也不靠谱, 之前定的航班整个消失了,换了新的航班和时间. 也没有通知. 我就只好
: 改签了之后的航班
: 现在AA航班晚点, 后面的航班只能改签一次只好作废... 这个能跟AA/BA argue一下申
: 请补偿吗?

avatar
m*e
8
拿了之后怎么和系里商谈呢?

【在 H***z 的大作中提到】
: 最主要是多拿funding。
avatar
l*a
9
no offence.
if you cannot find a solution to this question, you shall not apply a sde in
MS.
avatar
C*s
10
contact BA

【在 i*****e 的大作中提到】
: contact AA
avatar
c*x
11
最近两位同事的经验:拿到其他学校(通常排名更好)的offer, 就能拿到retention
offer了.更多的经费和更高的薪水.我们学校在中西部算是还行,有位同事分别拿了
UC的名校offer, 薪水升了70%,外带800k 额外的lab fund.
avatar
a*r
12
你能不能帮忙给个答案呢

【在 B*****g 的大作中提到】
: 自己搜搜吧,这个是老题了。
avatar
M*e
13
谢谢楼上两位

【在 M****e 的大作中提到】
: AA也不靠谱, 之前定的航班整个消失了,换了新的航班和时间. 也没有通知. 我就只好
: 改签了之后的航班
: 现在AA航班晚点, 后面的航班只能改签一次只好作废... 这个能跟AA/BA argue一下申
: 请补偿吗?

avatar
k*k
14
给楼主些参考
暑期3个来月可以回中国大陆作讲学或客座,拉来经费的话,美国你所在的高校会抽20%
左右的分成,好比一个暑假你从国内拉了30万人民币的激励资金(也就是报酬待遇),
美国你所在的学校抽走6万人民币,你自己有24万人民币入账,虽然看起来不多,但是
苍蝇也是肉!LESS THAN NOTHING !
avatar
a*r
15
I agree, could you please code it if it does not bother you too much?

in

【在 l*****a 的大作中提到】
: no offence.
: if you cannot find a solution to this question, you shall not apply a sde in
: MS.

avatar
s*c
16
每太看明白 你后面的航班不是aa的?否则不可能作废啊
avatar
u*g
17
所有学校都抽头吗?以前没听过

20%

【在 k*********k 的大作中提到】
: 给楼主些参考
: 暑期3个来月可以回中国大陆作讲学或客座,拉来经费的话,美国你所在的高校会抽20%
: 左右的分成,好比一个暑假你从国内拉了30万人民币的激励资金(也就是报酬待遇),
: 美国你所在的学校抽走6万人民币,你自己有24万人民币入账,虽然看起来不多,但是
: 苍蝇也是肉!LESS THAN NOTHING !

avatar
s*x
18
// input I AM Engineer
// output Engineer AM I
public static char[] reverseWordinString(char[] string){
char[] result = new char[string.length];
int k = 0;
for (int i = string.length-1; i >=0 ; ){
if (!isWord(string[i])) {
int j = i;
while (j>=0&&!isWord(string[j])) j-- ;
if (j==0 && !isWord(string[0]))
result[k++] = string[0];
for (int t = j + 1 ; t <= i ; t ++)
result[k++] = string[t];
i = j;
} else{
int j = i;
while (j>=0&&isWord(string[j])) j-- ;
if (j==0 && isWord(string[0]))
result[k++] = string[0];
for (int t = j + 1 ; t <= i ; t ++)
result[k++] = string[t];
i = j;
}
}
return result;
}
private static boolean isWord(char c) {
if ( (int) c >= (int) 'a' && (int) c <= (int) 'z')
return true;
if ( (int) c >= (int) 'A' && (int) c <= (int) 'Z')
return true;
return false;
}

【在 a********r 的大作中提到】
: I agree, could you please code it if it does not bother you too much?
:
: in

avatar
M*e
19
不是aa 另外定的

【在 s****c 的大作中提到】
: 每太看明白 你后面的航班不是aa的?否则不可能作废啊
avatar
k*k
20
很多美国学校都鼓励教职尤其TENURE暑期三个多月去美国以外的国家作交流 客座这种
,双赢,搞来了FUNDING,学校抽取一定比例,对教授们也是物质刺激

【在 u*******g 的大作中提到】
: 所有学校都抽头吗?以前没听过
:
: 20%

avatar
s*x
21
String s = "Hello, my name is John";
char[] r = reverseWordinString(s.toCharArray());
for (int i = 0 ; i< r.length; i++){
System.out.print(r[i]);
}
John is name my, Hello

【在 s********x 的大作中提到】
: // input I AM Engineer
: // output Engineer AM I
: public static char[] reverseWordinString(char[] string){
: char[] result = new char[string.length];
: int k = 0;
: for (int i = string.length-1; i >=0 ; ){
: if (!isWord(string[i])) {
: int j = i;
: while (j>=0&&!isWord(string[j])) j-- ;
: if (j==0 && !isWord(string[0]))

avatar
u*g
22
客座教授不是拿的讲课费吗?抽头是讲课费还是讲课费之外的research funding?加拿
大12个月工资的人也不少回国捞金

【在 k*********k 的大作中提到】
: 很多美国学校都鼓励教职尤其TENURE暑期三个多月去美国以外的国家作交流 客座这种
: ,双赢,搞来了FUNDING,学校抽取一定比例,对教授们也是物质刺激

avatar
s*x
23
有包子没?

【在 s********x 的大作中提到】
: String s = "Hello, my name is John";
: char[] r = reverseWordinString(s.toCharArray());
: for (int i = 0 ; i< r.length; i++){
: System.out.print(r[i]);
: }
: John is name my, Hello

avatar
r*e
24
国外的funding很难搞的
各国一般都限制自己的funding只能本国大学或机构申请

【在 k*********k 的大作中提到】
: 很多美国学校都鼓励教职尤其TENURE暑期三个多月去美国以外的国家作交流 客座这种
: ,双赢,搞来了FUNDING,学校抽取一定比例,对教授们也是物质刺激

avatar
S*I
25
LZ ask for C/C++, not C#.

【在 s********x 的大作中提到】
: 有包子没?
avatar
m*e
26
这种经费是应该是酬劳而不是科研经费吧?你是说除了科研经费以为,自己拿到其他学
校或者consulting的酬劳,学校也要抽成?

【在 u*******g 的大作中提到】
: 所有学校都抽头吗?以前没听过
:
: 20%

avatar
j*l
27
Programming Interview Exposed
avatar
s*o
28
很多系主任并没有给人加工资的权力。一般来说如果系主任觉得(主要看funding和
paper)更好的学校可能会来挖你,就会想办法找院长给你涨工资。
avatar
a*r
29
Thanks a lot!
But I need an implementation using C/C++, you cannot even use STL. Also, it
is better to use in place replacement.

【在 s********x 的大作中提到】
: 有包子没?
avatar
m*7
30
系主任很多时候受各种限制也没法给你大涨。
有external offer要求match最快。甚至是外面有人有挖你的意向,你找好时机拿出来
给系主任吹吹风,系主任再和鼎说一说,给你加个10%、20%完全可能的。

【在 m******e 的大作中提到】
: 据观察系里老师的工资参差不齐,越牛的当然工资越高。向想各位senior发考题讨教一
: 下涨工资方面的成功经验。
: 目前了解的学校正常涨工资模式有两种,一种是每年的raise,这个比例很小,而且有
: 时候要看业绩,每个学校可能略有不同。另外就是promotion的时候工资会有个相对大
: 一些的调整。想向各位大佬了解一下除此之外还有哪些涨工资的机会和成功经验?什么
: 情况下,怎么和系里提出要求比较有利呢?多谢赐教!

avatar
S*I
31
#include
#include
void reverseStr(char str[], int begin, int end){

char temp;

while(end > begin){
temp = str[begin];
str[begin++] = str[end];
str[end--] = temp;
}
}
void reverseWord(char str[]){

int begin = 0, end = 0, length = (int) strlen(str) - 1;

reverseStr(str, begin, length);

while(end < length){

if(str[end] != ' '){

begin = end;

while(end < length && str[end] != ' ')
end++;

reverseStr(str, begin, end - 1);

}
end++;
}
}
int main(int argc, const char* argv[])
{

char str[100];

strcpy(str, argv[1]);

reverseWord(str);

printf("%s", str);

}

【在 a********r 的大作中提到】
: Question:
: reverse the string based on the word (or you can understand as reversing
: words), for example,
: Input string: I Am Engineer
: Output string shall be: Engineer Am I
: 我是菜鸟, 那位达人能用C/C++编码一下,跪谢!

avatar
h*n
32
i believe the output should depend on how the interviewer would like to trea
t ' ' (or other delimiters)
string reverseByWord(string in){
string out;
string::iterator s = in.end();
string::iterator e = in.end();
while(s!=in.begin()){
e = s;
s--;
while((*s != ' ')&&(s != in.begin())){
s--;//strops at space
}

string::iterator cur = s;
if(s!=in.begin())
cur++;

for(;cur!=e; cur++)
out.push_back(*cur);
if(s!=in.begin())
out.push_back(' ');
}
return out;
}

【在 s********x 的大作中提到】
: 有包子没?
avatar
W*X
33
先把整个字符串倒序,再把每个单词倒序
avatar
a*r
34
Thanks SETI!

【在 S**I 的大作中提到】
: #include
: #include
: void reverseStr(char str[], int begin, int end){
:
: char temp;
:
: while(end > begin){
: temp = str[begin];
: str[begin++] = str[end];
: str[end--] = temp;

avatar
l*a
35
There need to have a minor change.
From
while(end < length && (str[end] != ' '))
end++;
To
while(end <= length && (str[end] != ' '))
end++;

【在 S**I 的大作中提到】
: #include
: #include
: void reverseStr(char str[], int begin, int end){
:
: char temp;
:
: while(end > begin){
: temp = str[begin];
: str[begin++] = str[end];
: str[end--] = temp;

avatar
a*r
36
我是菜鸟,Lanmama 达人:
Can you implement it with in-place word-by-word swapping? for example,
considering using two pointers, one move from left to right, another move
from right to left.

【在 l*****a 的大作中提到】
: There need to have a minor change.
: From
: while(end < length && (str[end] != ' '))
: end++;
: To
: while(end <= length && (str[end] != ' '))
: end++;

avatar
d*e
37
前面SETI的不是in-place?

【在 a********r 的大作中提到】
: 我是菜鸟,Lanmama 达人:
: Can you implement it with in-place word-by-word swapping? for example,
: considering using two pointers, one move from left to right, another move
: from right to left.

avatar
S*I
38
you're right, just changed.

【在 l*****a 的大作中提到】
: There need to have a minor change.
: From
: while(end < length && (str[end] != ' '))
: end++;
: To
: while(end <= length && (str[end] != ' '))
: end++;

avatar
a*r
39
Yes, SETI's is in-place and char-by-char swapping. possible to word-by-word
swapping?

【在 d**e 的大作中提到】
: 前面SETI的不是in-place?
avatar
d*e
40
做法都这样的,直接换word不行

word

【在 a********r 的大作中提到】
: Yes, SETI's is in-place and char-by-char swapping. possible to word-by-word
: swapping?

avatar
f*3
41
我也是新人,呵呵。不过刚好做过这道题。
有包子没?=D
#include
using namespace std;
using std::string;
char *reverseEachword(char *src, int len)
{
char *p = src, *q = src + len - 1;
char tmp;
while(p < q)
{
tmp = *p;
//src[0] = 'z';
*p = *q; // why this step is wrong?
*q = tmp;
p++;
q--;
}
return src;
}
char *reverseWholeStr(char *srcstr, int len)
{
char *p = srcstr, *q;
int count;
while(*p != '\0')
{
count = 0;
q = p;
while(*q != ' ' && *q != '\0')
{
q++;
count++;
}
reverseEachword(p, count);
if(*(p+count) != '\0')
p += count+1;
else
p += count;
}
return srcstr;
}
int main()
{
char ss[] = "Hello this is Bob";
char *t = reverseEachword(ss, 17);
char *dst = reverseWholeStr(t, 17);
for(char *p = dst; *p != '\0'; p++)
cout<cout<}

as reversing

【在 a********r 的大作中提到】
: Question:
: reverse the string based on the word (or you can understand as reversing
: words), for example,
: Input string: I Am Engineer
: Output string shall be: Engineer Am I
: 我是菜鸟, 那位达人能用C/C++编码一下,跪谢!

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。