?? ss_def01.h
字號:
#include "math.h"
#include "time.h"
#include <stdio.h>
#include <stdlib.h>
#define true 1
#define false 0
#define MAX 50
/*---------表結構的定義.為簡化起見,表元素我們使用整型數據-----------*/
/*為方便在查找時設置監視哨以提高查找效率,
data[0]的位置不存儲元素,
即線性表的第i個元素被存放在data[i]上*/
typedef struct /*注意typedef的使用*/
{
int data[MAX]; /*數據域*/
int length; /*表長*/
}listtype;
void initiatelist(listtype *l) ;
int insertl(listtype *l, int i, int x) ;
int delete_l(listtype *l, int i);
void ptlist(listtype *l);
int make10(listtype *l);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -