Skip to content

Using linked list data structure properties of a bicycle can be arranged in ascending or descending order.

Notifications You must be signed in to change notification settings

mahankalijeevitha/JAVA-DB-QUERY

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

********************************
Usage:
********************************
java ShowBikes -type street_bike -color red -wheelbase




********************************
Keys to be passed as arguments
********************************
Type – type
Color – color
Construction Material – material
Height – height
Wheel Base – wheelbase
No of Gears – gear



********************************
Note: 
********************************
•Arguments length should be Odd number
•Arguments can be passed in any order but last argument will be used for Sorting



********************************
Classes
********************************

BiCycle{
        private String type,color,constructionMaterial;
	private int noOfGears,height,wheelBase;
}

Node{
       BiCycle data;
       Node next;
}

LinkedList{
	Node head;
	Node tail;
	int size;

	void add();
}


About

Using linked list data structure properties of a bicycle can be arranged in ascending or descending order.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages