我知道我很菜,没用过template,转专业的人从头学起不容易,没想到电面来的这么快
,结果电面被老印取笑了,呜呜。大家帮我看看这个怎么写,
Write a generic sort function that takes a list of generic type and returns
a list of generic type
人家给我的hint是用template
谢谢啦!
S*******w 发帖数: 24236
2
Google c++的template
returns
【在 j*******m 的大作中提到】 : 我知道我很菜,没用过template,转专业的人从头学起不容易,没想到电面来的这么快 : ,结果电面被老印取笑了,呜呜。大家帮我看看这个怎么写, : Write a generic sort function that takes a list of generic type and returns : a list of generic type : 人家给我的hint是用template : 谢谢啦!
j*******m 发帖数: 28
3
谢谢啦!我学习了下,但是不知道正确答案是什么
是不是该这么写
Template
S Getresult (S Given )
{
S Sort;
…… //sorting
Return (Sort);
}
【在 S*******w 的大作中提到】 : Google c++的template : : returns