⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 decstruct.txt

📁 It is an ebook about data structures,mainly linked list
💻 TXT
字号:
How to declare a structure of a linked list? 

Discuss it!          



#include <stdio.h>
#include <stdlib.h>

struct linkedList{
    int element;
    struct linkedList* next; 
};

typedef struct linkedList* List; // do typedef, better use List instead of struct linkedList*




Discuss it!          
 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -