+ 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 odpowiedzi
+ 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