C++单链表

   今晚敲单链表,编译报错:error: multiple types in one declaration。
   以为是在类末尾没有加分号,原来是在结构体末尾没有加分号。。
   学校要大一下后半学期才开数据结构。还是得靠自己吧。加油

  贴下代码————
 
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
       
       
#include<iostream>
using namespace std ;
struct linklist //结点
{
int data ;
linklist * next ;
}; //结构体末尾记得加分号
class linklistclass
{
private:
linklist * head ; //单链表头结点指针
public:
linklistclass ();
~ linklistclass ();
void creatlistf ( int a [], int n ); //头插法
void creatlistr ( int a [], int n ); //尾插法
void displist (); //输出结点值
int listlength (); //链表中结点个数
bool getelem ( int i , int & e ); //求某个数据元素值
int locateelem ( int e ); //按元素值查找
bool listinsert ( int i , int e ); //插入
bool listdelete ( int i ); //删除
};
linklistclass :: linklistclass ()
{
head = new linklist ();
head -> next = NULL ;
}
linklistclass ::~ linklistclass ()
{
linklist * pre , * p ;
pre = head ;
p = pre -> next ;
while ( p != NULL )
{
delete pre ;
pre = p ;
p = p -> next ;
}
delete pre ;
}
//头插法
void linklistclass :: creatlistf ( int a [], int n )
{
linklist * s ;
int i ;
head -> next = NULL ;
for ( i = 0 ; i < n ; i ++ )
{
s = new linklist ();
s -> data = a [ i ];
s -> next = head -> next ;
head -> next = s ;
}
}
//尾插法
void linklistclass :: creatlistr ( int a [], int n )
{
linklist * s , * r ; //r尾指针始终指向当前链表的尾结点 ,开始时指向头节点
int i ;
for ( i = 0 ; i < n ; i ++ )
{
s = new linklist ();
s -> data = a [ i ];
r -> next = s ;
r = s ;
}
r -> next = NULL ; //尾结点的指针域置为空
}
void linklistclass :: displist ()
{
linklist * p ;
p = head -> next ;
while ( p != NULL )
{
cout << p -> data << " " ;
p = p -> next ;
}
cout << endl ;
}
int linklistclass :: listlength ()
{
linklist * p ;
int i = 0 ;
p = head ;
while ( p -> next != NULL )
{
i ++ ;
p = p -> next ;
}
}
bool linklistclass :: getelem ( int i , int & e )
{
linklist * p ;
int j = 0 ;
while ( j < 1 && p != NULL )
{
j ++ ;
p = p -> next ;
}
if ( p == NULL )
{
return false ;
}
else
{
e = p -> data ;
return true ;
}
}
int linklistclass :: locateelem ( int e )
{
linklist * p ;
int i = 1 ;
p = p -> next ;
while ( p != NULL && p -> data != e )
{
p = p -> next ;
i ++ ;
}
if ( p == NULL )
return 0 ;
else
return i ;
}
bool linklistclass :: listinsert ( int i , int e )
{
linklist * s , * p ;
int j = 0 ;
if ( i < 1 )
return false ;
p = head ;
while ( j < i - 1 && p != NULL )
{
j ++ ;
p = p -> next ;
}
if ( p == NULL )
return false ;
else
{
s = new linklist ();
s -> data = e ;
s -> next = p -> next ;
p -> next = s ;
return true ;
}
}
bool linklistclass :: listdelete ( int i )
{
int j = 0 ;
linklist * p , * q ;
if ( i < 1 )
return false ;
p = head ;
while ( j < i - 1 && p != NULL )
{
j ++ ;
p = p -> next ;
}
if ( p == NULL )
return false ;
else
{
q = p -> next ;
if ( q == NULL )
return false ;
p -> next = q -> next ; //删除*q结点
delete q ;
return true ;
}
}
int main ()
{
linklistclass sail ;
int n ;
cout << "请输入链表结点数据结点的个数n " ;
cin >> n ;
int a [ 20 ];
cout << "请输入数组元素" << endl ;
for ( int i = 0 ; i < n ; i ++ )
cin >> a [ i ];
cout << "=============构建一个新链表" << endl ;
sail . creatlistf ( a , n );
cout << "=============链表构建完毕" << endl ;
cout << "=============输出链表" << endl ;
sail . displist ();
return 0 ;
}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值