Redian新闻
>
另外 求教两个关于review的问题
avatar
另外 求教两个关于review的问题# Immigration - 落地生根
C*O
1
设计actor and movie,主要就是要实现选择一个movie,就能找到里面的actor以及各个
actor的角色,选择一个actor就返回该人参加过的电影以及在电影中的角色
多谢大家了, 明天onsite,很有可能问这个 哈哈
avatar
w*a
2
1. 如果所审的稿件大多数是来自中国的是不是很不好? IO会注意到并纠缠这个细节吗?
怎么避免这种情况呢? 总不能和编辑发信说我想审外国人的paper吧。
现在发现我审的有80%是来自中国或台湾,可能因为IF低的杂志灌水的太多吧。
2. 发表在某些杂志上的文章,别人如果发现些问题可以针对文章写篇一页纸的comment
,一般编辑会将comment paper发送一个匿名审稿人和原文主要作者,后者不算是匿名
审稿人,可是编辑的信标题里写有 Review Request。 以下是编辑的信:
“The manuscript above is being considered for the Comments section of XXX
JOURNAL. It is being sent to you as an author of the work commented on, not
as an anonymous referee. Your identified response will be shown to the
Comment author(s) and reviewers. You may respond either with a formal Reply
Comment for possible simultaneous
publication or with remarks about the Comment; if the latter, you will be
given the opportunity at a later date to submit a formal Reply if and when
the Comment is accepted. ”
我的回复指出Comment里面对我工作有误读和歪曲,最后编辑结合匿名审稿人和我的意
见也据掉了那个Comment。
大家觉得这个能记做一次review吗? 再次感谢诸位!
avatar
C*O
3
自己想了想,请大牛赐教
class Movie{
public:
Movie(string name){初始化电影名}
void add_actor(string character_name, Actor*) {
添加这个 pair 到 movie_actors中
}
void print()
{
打印 map movie_actors
}
private:
string move_name;
map movie_actors;
}
class Actor{
public:
Actor(string name){演员名字}
add( Movie*, string character_name){
把Movie*,string character_name 加入进去
}
private:
map actors_map;
}
Class System
{
Add(movie* m)
{
把 m 加入 movie_map;
每个actor, 如果在actor_map, 更新
不再actor_map, 创建更新
}
private:
map movie_map;
map actor_map;
}
avatar
T*y
4

吗?
I don't know.
Why do you think of China and Taiwan so low?
Perhaps it's not the editor's issue, but your issue to choose this journal.
You could ask for more journals to review.
comment
not
Reply
No problem. Both rejection and acceptance are reasonable outcome of a review
, and that's why your judge work is important.

【在 w***a 的大作中提到】
: 1. 如果所审的稿件大多数是来自中国的是不是很不好? IO会注意到并纠缠这个细节吗?
: 怎么避免这种情况呢? 总不能和编辑发信说我想审外国人的paper吧。
: 现在发现我审的有80%是来自中国或台湾,可能因为IF低的杂志灌水的太多吧。
: 2. 发表在某些杂志上的文章,别人如果发现些问题可以针对文章写篇一页纸的comment
: ,一般编辑会将comment paper发送一个匿名审稿人和原文主要作者,后者不算是匿名
: 审稿人,可是编辑的信标题里写有 Review Request。 以下是编辑的信:
: “The manuscript above is being considered for the Comments section of XXX
: JOURNAL. It is being sent to you as an author of the work commented on, not
: as an anonymous referee. Your identified response will be shown to the
: Comment author(s) and reviewers. You may respond either with a formal Reply

avatar
t*e
5
俺不是大牛,不过这题应该就是要你设计一个database吧,可以考虑三个table
Actor(a_id(primary key), name, gender, age, ...)
Movie(m_id(primary key), name, date, ...)
Perform(a_id, m_id, role)
然后用SQL语句查询perform table 就可以了, 比如查演员"Charlie"演过的电影:
select Movie.name
from Perform, Actor, Movie
where Perform.a_id = Actor.a_id and
Perform.m_id = Movie.m_id and
Actor.name = "Charlie"
即使设计class, 也尽量避免造成Actor 和Movie class的耦合。
avatar
c*g
6
楼主也许想的太多了
我审的文章大于90%都是中国的。

吗?
comment
not
Reply

【在 w***a 的大作中提到】
: 1. 如果所审的稿件大多数是来自中国的是不是很不好? IO会注意到并纠缠这个细节吗?
: 怎么避免这种情况呢? 总不能和编辑发信说我想审外国人的paper吧。
: 现在发现我审的有80%是来自中国或台湾,可能因为IF低的杂志灌水的太多吧。
: 2. 发表在某些杂志上的文章,别人如果发现些问题可以针对文章写篇一页纸的comment
: ,一般编辑会将comment paper发送一个匿名审稿人和原文主要作者,后者不算是匿名
: 审稿人,可是编辑的信标题里写有 Review Request。 以下是编辑的信:
: “The manuscript above is being considered for the Comments section of XXX
: JOURNAL. It is being sent to you as an author of the work commented on, not
: as an anonymous referee. Your identified response will be shown to the
: Comment author(s) and reviewers. You may respond either with a formal Reply

avatar
w*x
7
题目太模糊了
avatar
l*2
8
疯兄,那你CLAIM的时候是如何说的呀? 只列出审过的杂志和文章吗?还是有什么更好
的办法呀?谢谢!

【在 c******g 的大作中提到】
: 楼主也许想的太多了
: 我审的文章大于90%都是中国的。
:
: 吗?
: comment
: not
: Reply

avatar
C*O
9
多谢你
我也看着像数据库
不过我sql还很不熟, 只会select, 不过trigger,check什么的,所以跳过啦

【在 t******e 的大作中提到】
: 俺不是大牛,不过这题应该就是要你设计一个database吧,可以考虑三个table
: Actor(a_id(primary key), name, gender, age, ...)
: Movie(m_id(primary key), name, date, ...)
: Perform(a_id, m_id, role)
: 然后用SQL语句查询perform table 就可以了, 比如查演员"Charlie"演过的电影:
: select Movie.name
: from Perform, Actor, Movie
: where Perform.a_id = Actor.a_id and
: Perform.m_id = Movie.m_id and
: Actor.name = "Charlie"

avatar
w*a
10
没有贬低中国和台湾的意思
如果审太多中国的稿,担心IO认为申请人不够"国际化"
我是直觉觉得diversify好些,但却无法控制
可能如风哥所说,想太多了。。。

.
review

【在 T*******y 的大作中提到】
:
: 吗?
: I don't know.
: Why do you think of China and Taiwan so low?
: Perhaps it's not the editor's issue, but your issue to choose this journal.
: You could ask for more journals to review.
: comment
: not
: Reply
: No problem. Both rejection and acceptance are reasonable outcome of a review

avatar
C*O
11
lol
只有这些信息

【在 w****x 的大作中提到】
: 题目太模糊了
avatar
w*a
12
对于2, 可能这样说更清楚吧:
别人找茬,写comment质疑我发在某jounal的paper,editor发信要求我写个回复意见,
我的Reply能不能算给这个journal做过一次review?
这是个top journal,所以我才会纠结能不能count。
关于最后结果,如果别人comment成功发表,似乎对自己而言是negative的,那我估计
也不会提了。
再次感谢您和风兄等码这么多字回复!

.
review

【在 T*******y 的大作中提到】
:
: 吗?
: I don't know.
: Why do you think of China and Taiwan so low?
: Perhaps it's not the editor's issue, but your issue to choose this journal.
: You could ask for more journals to review.
: comment
: not
: Reply
: No problem. Both rejection and acceptance are reasonable outcome of a review

avatar
l*a
13
NIU ah
you already got all the onsite interview questions of tomorrow!!!
Admire

【在 C*O 的大作中提到】
: 设计actor and movie,主要就是要实现选择一个movie,就能找到里面的actor以及各个
: actor的角色,选择一个actor就返回该人参加过的电影以及在电影中的角色
: 多谢大家了, 明天onsite,很有可能问这个 哈哈

avatar
T*y
14
This is indeed not a typical review, but it's judge work still. Judge
work includes being an editorial member, a session chair, on TPC, or
regular reviewer. Now you could say that this top journal specifically
solicited your opinion on a manuscript, and they used your judgement to
make the final decision on that manuscript, etc.

Exactly. But now that the comment was rejected because it was not
correct, then your work's accuracy and the editor's trust in your
expertise should be good for your contribution.

【在 w***a 的大作中提到】
: 对于2, 可能这样说更清楚吧:
: 别人找茬,写comment质疑我发在某jounal的paper,editor发信要求我写个回复意见,
: 我的Reply能不能算给这个journal做过一次review?
: 这是个top journal,所以我才会纠结能不能count。
: 关于最后结果,如果别人comment成功发表,似乎对自己而言是negative的,那我估计
: 也不会提了。
: 再次感谢您和风兄等码这么多字回复!
:
: .
: review

avatar
C*O
15
哈哈
大牛,指点一下吧
这公司很环保的

【在 l*****a 的大作中提到】
: NIU ah
: you already got all the onsite interview questions of tomorrow!!!
: Admire

avatar
c*g
16
只列出审过的杂志和文章
把reivew过的牛杂志提了一下
比如:“#1 journal in the area of mitbbs watering”

【在 l******2 的大作中提到】
: 疯兄,那你CLAIM的时候是如何说的呀? 只列出审过的杂志和文章吗?还是有什么更好
: 的办法呀?谢谢!

avatar
l*a
17
obviously this is an OOD question

【在 t******e 的大作中提到】
: 俺不是大牛,不过这题应该就是要你设计一个database吧,可以考虑三个table
: Actor(a_id(primary key), name, gender, age, ...)
: Movie(m_id(primary key), name, date, ...)
: Perform(a_id, m_id, role)
: 然后用SQL语句查询perform table 就可以了, 比如查演员"Charlie"演过的电影:
: select Movie.name
: from Perform, Actor, Movie
: where Perform.a_id = Actor.a_id and
: Perform.m_id = Movie.m_id and
: Actor.name = "Charlie"

avatar
w*a
18
That is very helpful. Thank you so much.

【在 T*******y 的大作中提到】
: This is indeed not a typical review, but it's judge work still. Judge
: work includes being an editorial member, a session chair, on TPC, or
: regular reviewer. Now you could say that this top journal specifically
: solicited your opinion on a manuscript, and they used your judgement to
: make the final decision on that manuscript, etc.
:
: Exactly. But now that the comment was rejected because it was not
: correct, then your work's accuracy and the editor's trust in your
: expertise should be good for your contribution.

avatar
C*O
19
那用什么design patterns 呢
我的设计不好吧...
可否改进

【在 l*****a 的大作中提到】
: obviously this is an OOD question
avatar
w*a
20
1. 如果所审的稿件大多数是来自中国的是不是很不好? IO会注意到并纠缠这个细节吗?
怎么避免这种情况呢? 总不能和编辑发信说我想审外国人的paper吧。
现在发现我审的有80%是来自中国或台湾
2. 发表在某些杂志上的文章,别人如果发现些问题可以针对文章写篇一页纸的comment
,一般编辑会将comment paper发送一个匿名审稿人和原文主要作者,后者不算是匿名
审稿人,可是编辑的信标题里写有 Review Request。 以下是编辑的信:
“The manuscript above is being considered for the Comments section of XXX
JOURNAL. It is being sent to you as an author of the work commented on, not
as an anonymous referee. Your identified response will be shown to the
Comment author(s) and reviewers. You may respond either with a formal Reply
Comment for possible simultaneous
publication or with remarks about the Comment; if the latter, you will be
given the opportunity at a later date to submit a formal Reply if and when
the Comment is accepted. ”
我的回复指出Comment里面对我工作有误读和歪曲,最后编辑结合匿名审稿人和我的意
见也据掉了那个Comment。
大家觉得这个能记做一次review吗? 再次感谢诸位!
avatar
l*a
21
why your System need to hold two map?
two list will be enough, Movie Name is already a property of a Movie object
Class Movie
{
list alist;
hash_map hm;
}
Class Actor
{
list mlist;
hash_map hm;
}
Class System
{
list alist;
list mlist;
}

【在 C*O 的大作中提到】
: 自己想了想,请大牛赐教
: class Movie{
: public:
: Movie(string name){初始化电影名}
: void add_actor(string character_name, Actor*) {
: 添加这个 pair 到 movie_actors中
: }
: void print()
: {
: 打印 map movie_actors

avatar
T*y
22

吗?
I don't know.
Why do you think of China and Taiwan so low?
Perhaps it's not the editor's issue, but your issue to choose this journal.
You could ask for more journals to review.
comment
not
Reply
No problem. Both rejection and acceptance are reasonable outcome of a review
, and that's why your judge work is important.

【在 w***a 的大作中提到】
: 1. 如果所审的稿件大多数是来自中国的是不是很不好? IO会注意到并纠缠这个细节吗?
: 怎么避免这种情况呢? 总不能和编辑发信说我想审外国人的paper吧。
: 现在发现我审的有80%是来自中国或台湾
: 2. 发表在某些杂志上的文章,别人如果发现些问题可以针对文章写篇一页纸的comment
: ,一般编辑会将comment paper发送一个匿名审稿人和原文主要作者,后者不算是匿名
: 审稿人,可是编辑的信标题里写有 Review Request。 以下是编辑的信:
: “The manuscript above is being considered for the Comments section of XXX
: JOURNAL. It is being sent to you as an author of the work commented on, not
: as an anonymous referee. Your identified response will be shown to the
: Comment author(s) and reviewers. You may respond either with a formal Reply

avatar
C*O
23
我用两个map, 因为觉得search会比list快
多谢你的回复
确实比我写的清晰多啦

object

【在 l*****a 的大作中提到】
: why your System need to hold two map?
: two list will be enough, Movie Name is already a property of a Movie object
: Class Movie
: {
: list alist;
: hash_map hm;
: }
: Class Actor
: {
: list mlist;

avatar
c*g
24
楼主也许想的太多了
我审的文章大于90%都是中国的。

吗?
comment
not
Reply

【在 w***a 的大作中提到】
: 1. 如果所审的稿件大多数是来自中国的是不是很不好? IO会注意到并纠缠这个细节吗?
: 怎么避免这种情况呢? 总不能和编辑发信说我想审外国人的paper吧。
: 现在发现我审的有80%是来自中国或台湾
: 2. 发表在某些杂志上的文章,别人如果发现些问题可以针对文章写篇一页纸的comment
: ,一般编辑会将comment paper发送一个匿名审稿人和原文主要作者,后者不算是匿名
: 审稿人,可是编辑的信标题里写有 Review Request。 以下是编辑的信:
: “The manuscript above is being considered for the Comments section of XXX
: JOURNAL. It is being sent to you as an author of the work commented on, not
: as an anonymous referee. Your identified response will be shown to the
: Comment author(s) and reviewers. You may respond either with a formal Reply

avatar
b*u
25
我觉得关键是 角色和 演员的关系。一定要问是 多对多, 一对一, 还是 一对多。
考虑到 A角和B角,以及一个演员可以扮演多个角色;多对多是正解。
所以是四个TABLE。
avatar
l*2
26
疯兄,那你CLAIM的时候是如何说的呀? 只列出审过的杂志和文章吗?还是有什么更好
的办法呀?谢谢!

【在 c******g 的大作中提到】
: 楼主也许想的太多了
: 我审的文章大于90%都是中国的。
:
: 吗?
: comment
: not
: Reply

avatar
d*u
27


【在 C*O 的大作中提到】
: 哈哈
: 大牛,指点一下吧
: 这公司很环保的

avatar
w*a
28
没有贬低中国和台湾的意思
如果审太多中国的稿,担心IO认为申请人不够"国际化"
我是直觉觉得diversify好些,但却无法控制
可能如风哥所说,想太多了。。。

.
review

【在 T*******y 的大作中提到】
:
: 吗?
: I don't know.
: Why do you think of China and Taiwan so low?
: Perhaps it's not the editor's issue, but your issue to choose this journal.
: You could ask for more journals to review.
: comment
: not
: Reply
: No problem. Both rejection and acceptance are reasonable outcome of a review

avatar
w*a
29
对于2, 可能这样说更清楚吧:
别人找茬,写comment质疑我发在某jounal的paper,editor发信要求我写个回复意见,
我的Reply能不能算给这个journal做过一次review?
这是个top journal,所以我才会纠结能不能count。
关于最后结果,如果别人comment成功发表,似乎对自己而言是negative的,那我估计
也不会提了。
再次感谢您和风兄等码这么多字回复!

.
review

【在 T*******y 的大作中提到】
:
: 吗?
: I don't know.
: Why do you think of China and Taiwan so low?
: Perhaps it's not the editor's issue, but your issue to choose this journal.
: You could ask for more journals to review.
: comment
: not
: Reply
: No problem. Both rejection and acceptance are reasonable outcome of a review

avatar
T*y
30
This is indeed not a typical review, but it's judge work still. Judge
work includes being an editorial member, a session chair, on TPC, or
regular reviewer. Now you could say that this top journal specifically
solicited your opinion on a manuscript, and they used your judgement to
make the final decision on that manuscript, etc.

Exactly. But now that the comment was rejected because it was not
correct, then your work's accuracy and the editor's trust in your
expertise should be good for your contribution.

【在 w***a 的大作中提到】
: 对于2, 可能这样说更清楚吧:
: 别人找茬,写comment质疑我发在某jounal的paper,editor发信要求我写个回复意见,
: 我的Reply能不能算给这个journal做过一次review?
: 这是个top journal,所以我才会纠结能不能count。
: 关于最后结果,如果别人comment成功发表,似乎对自己而言是negative的,那我估计
: 也不会提了。
: 再次感谢您和风兄等码这么多字回复!
:
: .
: review

avatar
c*g
31
只列出审过的杂志和文章
把reivew过的牛杂志提了一下
比如:“#1 journal in the area of mitbbs watering”

【在 l******2 的大作中提到】
: 疯兄,那你CLAIM的时候是如何说的呀? 只列出审过的杂志和文章吗?还是有什么更好
: 的办法呀?谢谢!

avatar
w*a
32
That is very helpful. Thank you so much.

【在 T*******y 的大作中提到】
: This is indeed not a typical review, but it's judge work still. Judge
: work includes being an editorial member, a session chair, on TPC, or
: regular reviewer. Now you could say that this top journal specifically
: solicited your opinion on a manuscript, and they used your judgement to
: make the final decision on that manuscript, etc.
:
: Exactly. But now that the comment was rejected because it was not
: correct, then your work's accuracy and the editor's trust in your
: expertise should be good for your contribution.

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