Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/142vip/408CSFamily
/ LinkNode
Class
LinkNode
code/ds/LinkStack.cpp:2–5 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
// 链栈类型定义【基础】
2
typedef struct LinkNode{
3
ElemType data; // 栈元素结点数据域
4
struct LinkNode *next; // 栈元素结点指针域
5
} *LinkStack;
6
7
// 更为详细的定义
8
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected