LinkedList From Scratch PART 2 – C# C Sharp Visual Studio 2010
In this tutorial I show you how to create your own linked list similar to the List in C# from scratch. You can learn a lot from creating your own versions of common data structures. This is PART 2 WEBSITE: www.Quack-Ware.com FORUMS http FREE CODE SNIPPETS www.freecodesnippets.com
Video Tutorial Rating: 4 / 5
Don’t forget to check out our other video tutorials or share this video with a friend.
4 responses to “LinkedList From Scratch PART 2 – C# C Sharp Visual Studio 2010”
Leave a Reply Cancel reply
Video Tutorials
Bringing you the best video tutorials for Photoshop, Illustrator, Fireworks, WordPress, CSS and others.
Video tutorial posted 17/02/13
Category: C# Tutorials
Pages
Random Videos
-
iMovie Tutorial- Explosion Effects
6,893 views
-
Adobe Illustrator Tutorial – Angry Birds
2,560 views
Video Categories
- 3DS Max Tutorials (150)
- After Effects Tutorials (160)
- C# Tutorials (121)
- Colour (6)
- Crazy Effects (1)
- CSS Tutorials (120)
- Dreamweaver Tutorials (139)
- Excel Tutorials (127)
- Featured (10)
- Fireworks Tutorials (131)
- General Effects (9)
- HTML Tutorials (143)
- Illustration and Vector (1)
- Illustrator Tutorials (174)
- IMove Tutorials (119)
- Lightroom Tutorials (145)
- People and Faces (3)
- Photoshop Tutorials (169)
- Text Effects (7)
- Uncategorized (32)
- WordPress Tutorials (140)
Tags
VideoTutorials.co.uk
-
Videotutorials.co.uk offers the web's best Photoshop tutorials, Illustrator video guides, CSS and HTML tutorials and much more all in one place. With new videos being added every day, you can learn how to master software and code to give your images and website some great effects.
Our site has beginner, intermediate and advanced video tutorials of varying lengths so you can learn a new skill at your own speed and level. So whether you're a web designer, print designer or just wanting to edit some family photos, you can get to it quickly and easily using these free video guides. (more)
Why can I only use LinkList, while you use LinkedList? what is the difference and where is LinkedList?
Would be easiest to have a private size property (with a public getter) that gets updated when you add, remove, and clear the list.
To simplify many functions:
Node getNode(int idx); // code first
and
private int _length; // maintain throughout
— interface
object LinkedList.remove(int idx); //should throw an exception instead of returning null
— or — the sig should be
bool remove(int idx, out object o); which does nada to o when out of bounds
—
bool replace(int idx, object oNew, out oOld);
and you also forgot the major function:
LinkedList append(LinkedList l); // return this
thank you very much for this video
I really love it.
this teaches me a lot.
and congcrat for being a partner. This is much better when you can upload 20 minute video.
to remind you this is how to write getter and setter:
public int Id { get; set;}