+ 3
Can we collaborate on a game.??
I'm looking for collabs to make a game who is in?? https://code.sololearn.com/W63UAbGRVWZG/?ref=app
5 Answers
+ 4
Collaboration on Sololearn is not easy.
0
I'd like to
0
im
in
0
ContentïŒLinked List
1. Define the Linked List (with header) Node asïŒ
typedef struct LNode
{ int data;
struct LNode *next;
} LNode;
Please write the code for Linked List initialize (e.g. init();)
Add(List l, Item key)
After adding the new item, keep the value satisfy the increasing order.
Test your functions in main()
- 1
kto znaet