由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - how to return two values in a C function?
相关主题
我的几个面试算法解答。发一些面世题,C Programming
一道面试题求解Factset面经,一面+二面
分享一道google 面试题。大数据相关。bloomberg onsite & offer
这个题有什么好办法。(找出 5^1234566789893943的从底位开始Link nodes at same level in a binary tree 怎么做?
再发两道F电面题一道面试题
adobe coding TestG公司电面两轮
load data to a dictionary in R (转载)一个GOOG的二叉树面试题
关于面试ABC微软 summer intern phone interview
相关话题的讨论汇总
话题: return话题: values话题: int话题: function话题: two
进入JobHunting版参与讨论
1 (共1页)
e**c
发帖数: 95
1
a little confusing now.
R***n
发帖数: 680
2
Array or Structure?
t****t
发帖数: 387
3
pointer 或者 reference
f*********5
发帖数: 576
4
use them as parameter.
for example,you want to modify a linked list and return the
result head and its length.
======================================
void GetListLen(struct node ** head,int &len)
{
...
*head=***;
*len=*;
return;
}
struct node * list;
int lenth;
GetListLen(&list,lenth);
//you can use list and length here.

【在 e**c 的大作中提到】
: a little confusing now.
f********i
发帖数: 563
5
我一般写成如下样子:
bool foo( int *input_data1, int *input_data2, const int para1, const int
para2, int &output_data1, int &output_data2)
{
if(!succeed)
{
return false;
}
return true;
}
1 (共1页)
进入JobHunting版参与讨论
相关主题
微软 summer intern phone interview再发两道F电面题
大家新年好。 请教一个 c interview question (转载)adobe coding Test
请教一个二叉树镜像问题load data to a dictionary in R (转载)
问个题关于面试ABC
我的几个面试算法解答。发一些面世题,C Programming
一道面试题求解Factset面经,一面+二面
分享一道google 面试题。大数据相关。bloomberg onsite & offer
这个题有什么好办法。(找出 5^1234566789893943的从底位开始Link nodes at same level in a binary tree 怎么做?
相关话题的讨论汇总
话题: return话题: values话题: int话题: function话题: two