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

📄 node.h

📁 判断链表是否相交 若相交
💻 H
字号:
#include <iostream>
using namespace std;
/////the class node of the link////
class Node {
public:
	int e;																//recond element
	Node *next;															//recond next node
	Node (int elem,Node *nextVal){e=elem;next=nextVal;}
	Node (int elem){e=elem;next=NULL;}
	Node (){next=NULL;}
};

⌨️ 快捷键说明

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