链表内存图

发布于 2024-09-24 12:12:15 字数 410 浏览 1 评论 0原文

struct letter
{
char ch;
struct letter *ptr_next;
}
*ptr_first,*ptr_this;
//ptr this contains the address of the first node and ptr this contains the address of last node added.

alt text必须在链表中插入单词椅子,使得 C 进入第一个节点,h 进入第二个节点等等.. 附图是要填充的内存图。 我还添加了我尝试过的内容。如果我错了,请指导我。alt text 提前致谢..

struct letter
{
char ch;
struct letter *ptr_next;
}
*ptr_first,*ptr_this;
//ptr this contains the address of the first node and ptr this contains the address of last node added.

alt textA word chair has to be inserted in the linked list such that C goes into the first node,h in the second and so on..
The attached picture is the memory diagram to fill.
I also added what i tried.Please guide me if i am wrong.alt text
Thanks in advance..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌生 2024-10-01 12:12:15

你的问题的答案:不。
不,因为你在 ff15 留下了一个未解决的问号。

the answer to your question: no.
no, because you left one question mark unresolved at ff15.

人生戏 2024-10-01 12:12:15

问题是编译器将在结构字母中插入的填充字节。连续的结构字母对象的地址永远不会像您的绘图中那样结束。

The problem is the padding bytes your compiler will insert in your struct letter. The addresses of contiguous struct letter objects will never end up like in your drawing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文