SlideShare a Scribd company logo
1 of 2
I need help coding a doubly linked list from this unfinished code.
Everything commented out is what needs to be added. This is done using C# in a Visual Studio
Windows Form App.
internal class DoubleLinkedList {
public DoubleLinkedListNode? firstNode = null;
public DoubleLinkedListNode? lastNode = null;
public DoubleLinkedListNode? currentNode = null;
// other class level variables needed?
public DoubleLinkedList() {
// creates first node in list with firstValue
}
public DoubleLinkedList(string firstValue) {
// methods and features to add:
// get current node reference
// insert node before first
// delete first node
// insert node after last
// delete last node
// insert node after current - uses multiple methods
// delete current
// move current to next node
// move current to previous node
// recursive: find node with value - return reference or null
// recursive: get display string
}
}
/*******************************
* double Linked List Node - needs to be made generic
* class is incomplete
* *****************************/
internal class DoubleLinkedListNode {
public string? value = null;
public DoubleLinkedListNode? nextNode = null;
public DoubleLinkedListNode? previousNode = null;
public DoubleLinkedListNode(string v) {
value = v.ToLower();
}
private DoubleLinkedListNode() {
value = null;
}
}

More Related Content

Similar to I need help coding a doubly linked list from this unfinished code- Eve.docx

Use C++ Write a function to merge two doubly linked lists. The input.pdf
Use C++ Write a function to merge two doubly linked lists. The input.pdfUse C++ Write a function to merge two doubly linked lists. The input.pdf
Use C++ Write a function to merge two doubly linked lists. The input.pdfshalins6
 
1183 c-interview-questions-and-answers
1183 c-interview-questions-and-answers1183 c-interview-questions-and-answers
1183 c-interview-questions-and-answersAkash Gawali
 
I need help implementing a Stack with this java programming assignme.pdf
I need help implementing a Stack with this java programming assignme.pdfI need help implementing a Stack with this java programming assignme.pdf
I need help implementing a Stack with this java programming assignme.pdfsauravmanwanicp
 
Assignment isPage 349-350 #4 and #5 Use the Linked List lab.pdf
Assignment isPage 349-350 #4 and #5 Use the Linked List lab.pdfAssignment isPage 349-350 #4 and #5 Use the Linked List lab.pdf
Assignment isPage 349-350 #4 and #5 Use the Linked List lab.pdffortmdu
 
In the class we extensively discussed a node class called IntNode in.pdf
In the class we extensively discussed a node class called IntNode in.pdfIn the class we extensively discussed a node class called IntNode in.pdf
In the class we extensively discussed a node class called IntNode in.pdfarjunstores123
 
C++Write a method Node Nodereverse() which reverses a list..pdf
C++Write a method Node Nodereverse() which reverses a list..pdfC++Write a method Node Nodereverse() which reverses a list..pdf
C++Write a method Node Nodereverse() which reverses a list..pdfarjunenterprises1978
 
Assignment is Page 349-350 #4 and #5 Use the Linked Lis.pdf
Assignment is Page 349-350 #4 and #5 Use the Linked Lis.pdfAssignment is Page 349-350 #4 and #5 Use the Linked Lis.pdf
Assignment is Page 349-350 #4 and #5 Use the Linked Lis.pdfformicreation
 
Need done for Date Structures please! 4-18 LAB- Sorted number list imp.pdf
Need done for Date Structures please! 4-18 LAB- Sorted number list imp.pdfNeed done for Date Structures please! 4-18 LAB- Sorted number list imp.pdf
Need done for Date Structures please! 4-18 LAB- Sorted number list imp.pdfinfo114
 
could you implement this function please, im having issues with it..pdf
could you implement this function please, im having issues with it..pdfcould you implement this function please, im having issues with it..pdf
could you implement this function please, im having issues with it..pdfferoz544
 
Please write in C++ and should be able to compile and debug.Thank yo.pdf
Please write in C++ and should be able to compile and debug.Thank yo.pdfPlease write in C++ and should be able to compile and debug.Thank yo.pdf
Please write in C++ and should be able to compile and debug.Thank yo.pdfajaycosmeticslg
 
C++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdf
C++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdfC++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdf
C++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdfpoblettesedanoree498
 
This assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdfThis assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdfEricvtJFraserr
 
I need help completing this C++ code with these requirements.instr.pdf
I need help completing this C++ code with these requirements.instr.pdfI need help completing this C++ code with these requirements.instr.pdf
I need help completing this C++ code with these requirements.instr.pdfeyeonsecuritysystems
 
Please i need help on following program using C++ Language.Add the.pdf
Please i need help on following program using C++ Language.Add the.pdfPlease i need help on following program using C++ Language.Add the.pdf
Please i need help on following program using C++ Language.Add the.pdfezzi552
 
write recursive function that calculates and returns the length of a.pdf
write recursive function that calculates and returns the length of a.pdfwrite recursive function that calculates and returns the length of a.pdf
write recursive function that calculates and returns the length of a.pdfarpitcomputronics
 
Sorted number list implementation with linked listsStep 1 Inspec.pdf
 Sorted number list implementation with linked listsStep 1 Inspec.pdf Sorted number list implementation with linked listsStep 1 Inspec.pdf
Sorted number list implementation with linked listsStep 1 Inspec.pdfalmaniaeyewear
 
I need to implment a function that can reverse a single linked list..pdf
I need to implment a function that can reverse a single linked list..pdfI need to implment a function that can reverse a single linked list..pdf
I need to implment a function that can reverse a single linked list..pdfrohit219406
 
C++ Interview Question And Answer
C++ Interview Question And AnswerC++ Interview Question And Answer
C++ Interview Question And AnswerJagan Mohan Bishoyi
 
C++ questions And Answer
C++ questions And AnswerC++ questions And Answer
C++ questions And Answerlavparmar007
 

Similar to I need help coding a doubly linked list from this unfinished code- Eve.docx (20)

Use C++ Write a function to merge two doubly linked lists. The input.pdf
Use C++ Write a function to merge two doubly linked lists. The input.pdfUse C++ Write a function to merge two doubly linked lists. The input.pdf
Use C++ Write a function to merge two doubly linked lists. The input.pdf
 
1183 c-interview-questions-and-answers
1183 c-interview-questions-and-answers1183 c-interview-questions-and-answers
1183 c-interview-questions-and-answers
 
I need help implementing a Stack with this java programming assignme.pdf
I need help implementing a Stack with this java programming assignme.pdfI need help implementing a Stack with this java programming assignme.pdf
I need help implementing a Stack with this java programming assignme.pdf
 
Assignment isPage 349-350 #4 and #5 Use the Linked List lab.pdf
Assignment isPage 349-350 #4 and #5 Use the Linked List lab.pdfAssignment isPage 349-350 #4 and #5 Use the Linked List lab.pdf
Assignment isPage 349-350 #4 and #5 Use the Linked List lab.pdf
 
In the class we extensively discussed a node class called IntNode in.pdf
In the class we extensively discussed a node class called IntNode in.pdfIn the class we extensively discussed a node class called IntNode in.pdf
In the class we extensively discussed a node class called IntNode in.pdf
 
C++Write a method Node Nodereverse() which reverses a list..pdf
C++Write a method Node Nodereverse() which reverses a list..pdfC++Write a method Node Nodereverse() which reverses a list..pdf
C++Write a method Node Nodereverse() which reverses a list..pdf
 
Assignment is Page 349-350 #4 and #5 Use the Linked Lis.pdf
Assignment is Page 349-350 #4 and #5 Use the Linked Lis.pdfAssignment is Page 349-350 #4 and #5 Use the Linked Lis.pdf
Assignment is Page 349-350 #4 and #5 Use the Linked Lis.pdf
 
Need done for Date Structures please! 4-18 LAB- Sorted number list imp.pdf
Need done for Date Structures please! 4-18 LAB- Sorted number list imp.pdfNeed done for Date Structures please! 4-18 LAB- Sorted number list imp.pdf
Need done for Date Structures please! 4-18 LAB- Sorted number list imp.pdf
 
could you implement this function please, im having issues with it..pdf
could you implement this function please, im having issues with it..pdfcould you implement this function please, im having issues with it..pdf
could you implement this function please, im having issues with it..pdf
 
Please write in C++ and should be able to compile and debug.Thank yo.pdf
Please write in C++ and should be able to compile and debug.Thank yo.pdfPlease write in C++ and should be able to compile and debug.Thank yo.pdf
Please write in C++ and should be able to compile and debug.Thank yo.pdf
 
C++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdf
C++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdfC++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdf
C++ Doubly-Linked ListsThe goal of the exercise is to implement a.pdf
 
This assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdfThis assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdf
 
I need help completing this C++ code with these requirements.instr.pdf
I need help completing this C++ code with these requirements.instr.pdfI need help completing this C++ code with these requirements.instr.pdf
I need help completing this C++ code with these requirements.instr.pdf
 
Please i need help on following program using C++ Language.Add the.pdf
Please i need help on following program using C++ Language.Add the.pdfPlease i need help on following program using C++ Language.Add the.pdf
Please i need help on following program using C++ Language.Add the.pdf
 
C Homework Help
C Homework HelpC Homework Help
C Homework Help
 
write recursive function that calculates and returns the length of a.pdf
write recursive function that calculates and returns the length of a.pdfwrite recursive function that calculates and returns the length of a.pdf
write recursive function that calculates and returns the length of a.pdf
 
Sorted number list implementation with linked listsStep 1 Inspec.pdf
 Sorted number list implementation with linked listsStep 1 Inspec.pdf Sorted number list implementation with linked listsStep 1 Inspec.pdf
Sorted number list implementation with linked listsStep 1 Inspec.pdf
 
I need to implment a function that can reverse a single linked list..pdf
I need to implment a function that can reverse a single linked list..pdfI need to implment a function that can reverse a single linked list..pdf
I need to implment a function that can reverse a single linked list..pdf
 
C++ Interview Question And Answer
C++ Interview Question And AnswerC++ Interview Question And Answer
C++ Interview Question And Answer
 
C++ questions And Answer
C++ questions And AnswerC++ questions And Answer
C++ questions And Answer
 

More from PaulntmMilleri

III- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docx
III- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docxIII- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docx
III- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docxPaulntmMilleri
 
If your answer does not contain the proper ER Diagram- you will get a.docx
If your answer does not contain the proper ER Diagram- you will get a.docxIf your answer does not contain the proper ER Diagram- you will get a.docx
If your answer does not contain the proper ER Diagram- you will get a.docxPaulntmMilleri
 
If you want to create a layout for two buttons side by side on a windo.docx
If you want to create a layout for two buttons side by side on a windo.docxIf you want to create a layout for two buttons side by side on a windo.docx
If you want to create a layout for two buttons side by side on a windo.docxPaulntmMilleri
 
If P(B)-0-8- find P(BC)-.docx
If P(B)-0-8- find P(BC)-.docxIf P(B)-0-8- find P(BC)-.docx
If P(B)-0-8- find P(BC)-.docxPaulntmMilleri
 
If the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docx
If the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docxIf the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docx
If the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docxPaulntmMilleri
 
If event A-0-72 then the complement of event A-.docx
If event A-0-72 then the complement of event A-.docxIf event A-0-72 then the complement of event A-.docx
If event A-0-72 then the complement of event A-.docxPaulntmMilleri
 
If the Earth's orbit around the Sun was a perfect circle instead of an.docx
If the Earth's orbit around the Sun was a perfect circle instead of an.docxIf the Earth's orbit around the Sun was a perfect circle instead of an.docx
If the Earth's orbit around the Sun was a perfect circle instead of an.docxPaulntmMilleri
 
If I have 1-5 million dollars as a loan to start my own company and I.docx
If I have 1-5 million dollars as a loan to start my own company and I.docxIf I have 1-5 million dollars as a loan to start my own company and I.docx
If I have 1-5 million dollars as a loan to start my own company and I.docxPaulntmMilleri
 
If France and Korea engage in substantial trade but little financial f.docx
If France and Korea engage in substantial trade but little financial f.docxIf France and Korea engage in substantial trade but little financial f.docx
If France and Korea engage in substantial trade but little financial f.docxPaulntmMilleri
 
If a method overloads another method- can the two methods have differe.docx
If a method overloads another method- can the two methods have differe.docxIf a method overloads another method- can the two methods have differe.docx
If a method overloads another method- can the two methods have differe.docxPaulntmMilleri
 
If Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docx
If Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docxIf Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docx
If Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docxPaulntmMilleri
 
If a random variable X is uniformly distributed between 0 and 5 - what.docx
If a random variable X is uniformly distributed between 0 and 5 - what.docxIf a random variable X is uniformly distributed between 0 and 5 - what.docx
If a random variable X is uniformly distributed between 0 and 5 - what.docxPaulntmMilleri
 
If a corpus contains 10-000 documents- and a search query retrieves 10.docx
If a corpus contains 10-000 documents- and a search query retrieves 10.docxIf a corpus contains 10-000 documents- and a search query retrieves 10.docx
If a corpus contains 10-000 documents- and a search query retrieves 10.docxPaulntmMilleri
 
I- Explain this abstract and use some key points to use review some co.docx
I- Explain this abstract and use some key points to use review some co.docxI- Explain this abstract and use some key points to use review some co.docx
I- Explain this abstract and use some key points to use review some co.docxPaulntmMilleri
 
Identify the structure located at the point marked H- Do not give the.docx
Identify the structure located at the point marked H- Do not give the.docxIdentify the structure located at the point marked H- Do not give the.docx
Identify the structure located at the point marked H- Do not give the.docxPaulntmMilleri
 
Identify different aspects of organisational culture in some contempor.docx
Identify different aspects of organisational culture in some contempor.docxIdentify different aspects of organisational culture in some contempor.docx
Identify different aspects of organisational culture in some contempor.docxPaulntmMilleri
 
Identify and describe two ways that non-imaging providers- such as phy.docx
Identify and describe two ways that non-imaging providers- such as phy.docxIdentify and describe two ways that non-imaging providers- such as phy.docx
Identify and describe two ways that non-imaging providers- such as phy.docxPaulntmMilleri
 
Ibrahim is able to lend money to Naif (direct finance) with higher int.docx
Ibrahim is able to lend money to Naif (direct finance) with higher int.docxIbrahim is able to lend money to Naif (direct finance) with higher int.docx
Ibrahim is able to lend money to Naif (direct finance) with higher int.docxPaulntmMilleri
 
ib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docx
ib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docxib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docx
ib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docxPaulntmMilleri
 
I've also gathered a list of the primary selling features that Lavish.docx
I've also gathered a list of the primary selling features that Lavish.docxI've also gathered a list of the primary selling features that Lavish.docx
I've also gathered a list of the primary selling features that Lavish.docxPaulntmMilleri
 

More from PaulntmMilleri (20)

III- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docx
III- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docxIII- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docx
III- EXERCISE 1- CALCULATING ALLELIC- GENOTYPIC- AND PHENOTYPIC FREQUE.docx
 
If your answer does not contain the proper ER Diagram- you will get a.docx
If your answer does not contain the proper ER Diagram- you will get a.docxIf your answer does not contain the proper ER Diagram- you will get a.docx
If your answer does not contain the proper ER Diagram- you will get a.docx
 
If you want to create a layout for two buttons side by side on a windo.docx
If you want to create a layout for two buttons side by side on a windo.docxIf you want to create a layout for two buttons side by side on a windo.docx
If you want to create a layout for two buttons side by side on a windo.docx
 
If P(B)-0-8- find P(BC)-.docx
If P(B)-0-8- find P(BC)-.docxIf P(B)-0-8- find P(BC)-.docx
If P(B)-0-8- find P(BC)-.docx
 
If the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docx
If the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docxIf the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docx
If the GDP deflator is 400 and nominal GDP is $2 trillion billion- wha.docx
 
If event A-0-72 then the complement of event A-.docx
If event A-0-72 then the complement of event A-.docxIf event A-0-72 then the complement of event A-.docx
If event A-0-72 then the complement of event A-.docx
 
If the Earth's orbit around the Sun was a perfect circle instead of an.docx
If the Earth's orbit around the Sun was a perfect circle instead of an.docxIf the Earth's orbit around the Sun was a perfect circle instead of an.docx
If the Earth's orbit around the Sun was a perfect circle instead of an.docx
 
If I have 1-5 million dollars as a loan to start my own company and I.docx
If I have 1-5 million dollars as a loan to start my own company and I.docxIf I have 1-5 million dollars as a loan to start my own company and I.docx
If I have 1-5 million dollars as a loan to start my own company and I.docx
 
If France and Korea engage in substantial trade but little financial f.docx
If France and Korea engage in substantial trade but little financial f.docxIf France and Korea engage in substantial trade but little financial f.docx
If France and Korea engage in substantial trade but little financial f.docx
 
If a method overloads another method- can the two methods have differe.docx
If a method overloads another method- can the two methods have differe.docxIf a method overloads another method- can the two methods have differe.docx
If a method overloads another method- can the two methods have differe.docx
 
If Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docx
If Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docxIf Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docx
If Assets equal $150 and Liabilities equal $30- what does Owner's Equi.docx
 
If a random variable X is uniformly distributed between 0 and 5 - what.docx
If a random variable X is uniformly distributed between 0 and 5 - what.docxIf a random variable X is uniformly distributed between 0 and 5 - what.docx
If a random variable X is uniformly distributed between 0 and 5 - what.docx
 
If a corpus contains 10-000 documents- and a search query retrieves 10.docx
If a corpus contains 10-000 documents- and a search query retrieves 10.docxIf a corpus contains 10-000 documents- and a search query retrieves 10.docx
If a corpus contains 10-000 documents- and a search query retrieves 10.docx
 
I- Explain this abstract and use some key points to use review some co.docx
I- Explain this abstract and use some key points to use review some co.docxI- Explain this abstract and use some key points to use review some co.docx
I- Explain this abstract and use some key points to use review some co.docx
 
Identify the structure located at the point marked H- Do not give the.docx
Identify the structure located at the point marked H- Do not give the.docxIdentify the structure located at the point marked H- Do not give the.docx
Identify the structure located at the point marked H- Do not give the.docx
 
Identify different aspects of organisational culture in some contempor.docx
Identify different aspects of organisational culture in some contempor.docxIdentify different aspects of organisational culture in some contempor.docx
Identify different aspects of organisational culture in some contempor.docx
 
Identify and describe two ways that non-imaging providers- such as phy.docx
Identify and describe two ways that non-imaging providers- such as phy.docxIdentify and describe two ways that non-imaging providers- such as phy.docx
Identify and describe two ways that non-imaging providers- such as phy.docx
 
Ibrahim is able to lend money to Naif (direct finance) with higher int.docx
Ibrahim is able to lend money to Naif (direct finance) with higher int.docxIbrahim is able to lend money to Naif (direct finance) with higher int.docx
Ibrahim is able to lend money to Naif (direct finance) with higher int.docx
 
ib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docx
ib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docxib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docx
ib - ifpenata-1Journal Entries for Purchase- Return- and Remittance-Pe.docx
 
I've also gathered a list of the primary selling features that Lavish.docx
I've also gathered a list of the primary selling features that Lavish.docxI've also gathered a list of the primary selling features that Lavish.docx
I've also gathered a list of the primary selling features that Lavish.docx
 

Recently uploaded

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 

Recently uploaded (20)

Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 

I need help coding a doubly linked list from this unfinished code- Eve.docx

  • 1. I need help coding a doubly linked list from this unfinished code. Everything commented out is what needs to be added. This is done using C# in a Visual Studio Windows Form App. internal class DoubleLinkedList { public DoubleLinkedListNode? firstNode = null; public DoubleLinkedListNode? lastNode = null; public DoubleLinkedListNode? currentNode = null; // other class level variables needed? public DoubleLinkedList() { // creates first node in list with firstValue } public DoubleLinkedList(string firstValue) { // methods and features to add: // get current node reference // insert node before first // delete first node // insert node after last // delete last node // insert node after current - uses multiple methods // delete current // move current to next node // move current to previous node // recursive: find node with value - return reference or null // recursive: get display string } } /******************************* * double Linked List Node - needs to be made generic * class is incomplete * *****************************/ internal class DoubleLinkedListNode { public string? value = null; public DoubleLinkedListNode? nextNode = null; public DoubleLinkedListNode? previousNode = null; public DoubleLinkedListNode(string v) { value = v.ToLower(); } private DoubleLinkedListNode() { value = null;
  • 2. } }