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

📄 test.cpp

📁 本内容是与严蔚敏数据结构配套的讲义(c版 第二版)
💻 CPP
字号:
#include "stdio.h"
#include "test1.h"
#include "string.h"
#include "iostream.h"


void main()
{
	SqList L;
	int i = 1;
	
	ElemType e;
	InitList_Sq(L);
	e.age = 5;
	strcpy(e.name,"xiao");
	ListInsert_Sq( L, i, e);
	cout<<(L.elem)->age<<endl;
	cout<<(L.elem)->name<<endl;
}

⌨️ 快捷键说明

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