注册
登录
生产运营/行业运营
>>
Data-Structure-Projects
>>
返回
项目作者:
shbadawy
项目描述 :
Varies Projects Using Data Structure
高级语言:
C++
项目主页:
项目地址:
git://github.com/shbadawy/Data-Structure-Projects.git
创建时间:
2019-03-27T17:50:02Z
项目社区:
https://github.com/shbadawy/Data-Structure-Projects
开源协议:
下载
Data-Structure-Projects
Varies Projects Using Data Structure
LinkedList Implementation
: implementation include
set_item:
Set the value of the current node to the give value
set_next:
Link the current node to its next node
set_pre:
Link the current node to its previous node
add_front:
Add an element to the begining of the list
add_back:
Add an element to the end of the list
insert:
Insert a given element in the given indix of the list
isEmpty:
Check if the list is empty
count:
Count the number of element in the list
reverse:
Make the list in reverse order
get_avr:
Get the avarage of the elements in the list
printList:
Print the items in the list