hebinglb.h

来自「此程序实现两个有序链表合并成为一个有序链表」· C头文件 代码 · 共 11 行

H
11
字号
#include<stdio.h>
#include<stdlib.h>
struct node
{
	int data;
	struct node *next;
};
struct node *creat();
void hebing(struct node *ha,struct node *hb);
void out(struct node *h);

⌨️ 快捷键说明

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