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 | | s**********a 发帖数: 115 | | a***x 发帖数: 26368 | 5 这么回只能更现你的无知.
给大家介绍一下,这位就是在国内以为找个美国律师就可以办工作签证结果被人
骗了钱的小骗子.
【在 s**********a 的大作中提到】 : alexx 你个骗子又想骗人了
| n****g 发帖数: 150 | 6 是不是就是数据结构里面两个链表插值,完了以后,一个链表的指针丢了。 |
|