由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Three C/C++ Programming Questions
相关主题
Python应用核心编程 (第3版)问一个简单C++问题
What is automatic space allocation in C++?how to reverse a HUGE list?
Any possibility to make this expression faster?请教一个design的问题
从今天开始起,学C++!问个问题
葵花宝典之四大神功Looking for code example to get stock data
请教一个C++问题visual stdio 2005 question
map析构[合集] 这是个数学问题吧? 想不出来
老板嫌我C++太差!请推荐。问个问题
相关话题的讨论汇总
话题: pnode话题: pn1话题: ppn1话题: questions
进入Programming版参与讨论
1 (共1页)
j*****z
发帖数: 11
1
Can anyone help me to answer the following questions:
1) Given the following code snippet, what does the function DoesWhat() do?
And what, if any, assumptions are made about the input to the function.
struct _tagElement
{
int m_cRef;
unsigned char m_bData[20];
struct _tagElement * m_next;

} NODE, * PNODE;
PNODE DoesWhat (PNODE pn1, PNODE pn2)
{
PNODE * ppnV = &pn1;
PNODE * ppn1 = &pn1;
PNODE * ppn2 = &pn2;
for ( ; *ppn1 || *ppn2; ppn1 = &((
p****e
发帖数: 32
2
瞄了两眼,大致猜一下:把有序链表2里小于有序链表1的元素按顺序插入链表1吧,
可能不准,拿到程序里调一下就知道了。

【在 j*****z 的大作中提到】
: Can anyone help me to answer the following questions:
: 1) Given the following code snippet, what does the function DoesWhat() do?
: And what, if any, assumptions are made about the input to the function.
: struct _tagElement
: {
: int m_cRef;
: unsigned char m_bData[20];
: struct _tagElement * m_next;
:
: } NODE, * PNODE;

a***x
发帖数: 26368
3
nod.merge sort.
s**********a
发帖数: 115
4
alexx 你个骗子又想骗人了
a***x
发帖数: 26368
5
这么回只能更现你的无知.
给大家介绍一下,这位就是在国内以为找个美国律师就可以办工作签证结果被人
骗了钱的小骗子.

【在 s**********a 的大作中提到】
: alexx 你个骗子又想骗人了
n****g
发帖数: 150
6
是不是就是数据结构里面两个链表插值,完了以后,一个链表的指针丢了。
1 (共1页)
进入Programming版参与讨论
相关主题
问个问题葵花宝典之四大神功
请教这段Code到底是哪错了?请教一个C++问题
iphone/ipad javascript snippet editormap析构
请问mac下或linux下有什么像turbo c一样最简单的c语言ide老板嫌我C++太差!请推荐。
Python应用核心编程 (第3版)问一个简单C++问题
What is automatic space allocation in C++?how to reverse a HUGE list?
Any possibility to make this expression faster?请教一个design的问题
从今天开始起,学C++!问个问题
相关话题的讨论汇总
话题: pnode话题: pn1话题: ppn1话题: questions