(Linked list )Can someone complete the code | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

(Linked list )Can someone complete the code

using System; namespace DataStructures { class SkeletonLinkedList<T> where T : IComparable<T> { private Node head; private int length = 0; private class Node { public Node(T data) { this.data = data; } public T data; public Node next, prev; } public int Length { get { return length; } } public void Add(T data) { } public T Get(int index) { } public bool Contains(T data) { } public void Clear() { } public void Remove(T data) { } public void RemoveAt(int index) { } public void Sort() { } public void Display() { } } }

23rd Nov 2018, 2:56 AM
Nella🌟
Nella🌟 - avatar
2 ответов
+ 1
Why are you write rough code? In your code, you don't mention escape sequence(\n) and Semicolon. without these, you don't run your codes never.
23rd Nov 2018, 4:30 AM
Ravi Prakash Kumawat
Ravi Prakash Kumawat - avatar
0
Ravi Prakash Kumawat my code is missing the Add function and remove and Get i need to write some code in these functions to make it works
23rd Nov 2018, 4:34 AM
Nella🌟
Nella🌟 - avatar