Unit 261 Introduction to Searching and Sorting Comparable Interface Comparator Interface Algorithm Complexity Classes Exercises.

Slides:



Advertisements
Similar presentations
Exercise 1 Suppose C is a class that implements interfaces I and J. Which of the following Requires a type cast? C c = ……? I i = …..? J j = …..? c =
Advertisements

Problem Solving 5 Using Java API for Searching and Sorting Applications ICS-201 Introduction to Computing II Semester 071.
INTERFACES IN JAVA 1.Java Does not support Multiple Inheritance directly. Multiple inheritance can be achieved in java by the use of interfaces. 2.We need.
Computer Science 209 Software Development Equality and Comparisons.
Computer Programming Lab 8.
Copyright © 2014, 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with C++ Early Objects Eighth Edition by Tony Gaddis,
IKI 10100: Data Structures & Algorithms Ruli Manurung (acknowledgments to Denny & Ade Azurat) 1 Fasilkom UI Ruli Manurung (Fasilkom UI)IKI10100: Lecture22.
Chapter 9: Searching, Sorting, and Algorithm Analysis
Using interfaces Objects First with Java - A Practical Introduction using BlueJ, © David J. Barnes, Michael Kölling How would you find the maximum.
1 Lecture 23 Searching Overview  What is Searching?  Linear Search and its Implementation.  Brief Analysis of Linear Search.  Binary Search and its.
1 Role of Interfaces in Large-Scale Software l API:Application Programmer’s Interface: The methods that allow a programmer to manipulate the data elements.
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 11: Sorting and Searching  Searching Linear Binary  Sorting.
Searching. 2 Searching an array of integers If an array is not sorted, there is no better algorithm than linear search for finding an element in it static.
Searching and Sorting I 1 Searching and Sorting 1.
Comparable and Comparator Nuts and Bolts. 2 Nuts and bolts Four methods underlie many of Java’s important Collection types: equals, compare and compareTo,
Unit 261 Introduction to Searching and Sorting Comparable Interface Comparator Interface Algorithm Complexity Classes Exercises.
Comparable and Comparator. Outline of the Student class import java.util.*; public class Student implements Comparable { public Student(String name, int.
1 Lecture 08(API)Lecture 11 Java API and Interfaces l API:Application Programmer’s Interface: The methods that allow a programmer to manipulate the data.
ICS201 Lecture 20 : Searching King Fahd University of Petroleum & Minerals College of Computer Science & Engineering Information & Computer Science Department.
Unit 301 Java Collections Framework: Classes I JCF Class Hierarchy The ArrayList Class The Collections Class.
Searching. 2 Searching an array of integers If an array is not sorted, there is no better algorithm than linear search for finding an element in it static.
Unit 171 Algorithms and Problem Solving - II Algorithm Efficiency Primality Testing Improved Primality Testing Sieve of Eratosthenes Primality Testing.
CHAPTER 11 Searching. 2 Introduction Searching is the process of finding a target element among a group of items (the search pool), or determining that.
1 Search & Sorting Using Java API Searching and Sorting Using Standard Classes  Searching data other than primitive type.  Comparable interface.  Implementing.
1 Introduction to Searching and Sorting Comparable Interface -Reading p Comparator Interface.
Searching. Searching an array of integers If an array is not sorted, there is no better algorithm than linear search for finding an element in it static.
Introduction to Searching and Sorting
Comparable and Comparator. 2 Comparing our own objects The Object class provides public boolean equals(Object obj) and public int hashCode() methods –For.
1 Introduction to Searching and Sorting Comparable Interface -Reading p Comparator Interface.
Comparing Objects in Java. The == operator When you define an object, for instance Person p = new Person("John", 23); we talk about p as if its value.
Chapter 8 ARRAYS Continued
Searching Also: Logarithms. 2 Searching an array of integers If an array is not sorted, there is no better algorithm than linear search for finding an.
Set, TreeSet, TreeMap, Comparable, Comparator. Def: The abstract data type set is a structure that holds objects and satifies ARC: Objects can be added.
CMSC 202 Interfaces. 11/20102 Classes and Methods When a class defines its methods as public, it describes how the class user interacts with the method.
Collections F The limitations of arrays F Java Collection Framework hierarchy  Use the Iterator interface to traverse a collection  Set interface, HashSet,
© 2000 McGraw-Hill Introduction to Object-Oriented Programming with Java--WuChapter Chapter 10 Sorting and Searching.
Searching Also: Logarithms. 2 Searching an array of integers If an array is not sorted, there is no better algorithm than linear search for finding an.
Passing Other Objects Strings are called immutable which means that once a String object stores a value, it never changes –recall when we passed a message.
Java the UML Way versjon Only to be used in connection with the book "Java the UML Way", by Else Lervik and.
Chapter 8 Searching and Sorting Arrays Csc 125 Introduction to C++ Fall 2005.
Chapter 9 Searching and Sorting
5-Aug-2002cse Arrays © 2002 University of Washington1 Arrays CSE 142, Summer 2002 Computer Programming 1
Netprog: Java Intro1 Crash Course in Java. Netprog: Java Intro2 Why Java? Network Programming in Java is very different than in C/C++ –much more language.
Copyright © 2014 by John Wiley & Sons. All rights reserved.1 Chapter 10 - Interfaces.
Comparison-Based Sorting & Analysis Smt Genap
Some Standard Classes Goals The Object class The String class Wrapper classes The Math class Random Numbers.
©The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 4 th Ed Chapter Chapter 11 Searching and Sorting.
Comparable and Comparator Nuts and Bolts. Sets A set is a collection in which all elements are unique—an element is either in the set, or it isn’t In.
Coding Bat: Ends in ly Given a string of even length, return a string made of the middle two chars, so the string "string" yields "ri". The string.
Review TEST 2 Chapters 4,5,7. QUESTION For which type of operands does the == operator always work correctly: (a) int, (b) double, or (c) String?
U n i v e r s i t y o f H a i l 1 ICS 202  2011 spring  Data Structures and Algorithms 
Interfaces and Inner Classes
Searching and Sorting 14ACEHRPT Copyright © 2011 by Maria Litvin, Gary Litvin, and Skylight Publishing. All rights reserved. Java Methods Object-Oriented.
CSCI 51 Introduction to Programming March 10, 2009.
Day 3: The Command and Visitor Patterns. Preliminaries The Java static type system uses simple rules to infer types for Java expressions. The inferred.
More constructors 1. Constructors  recall that a public constructor is what a client uses to create an object  the purpose of a constructor is to initialize.
Searching.
Chapter 5 Ordered List.
An Introduction to Java – Part I
Introduction to Searching and Sorting
Chapter 5 Ordered List.
Comparable and Comparator Interfaces
Comparable and Comparator
Comparable and Comparator
Comparable and Comparator Interfaces
Searching.
Creating and Modifying Text part 3
Comparable and Comparator Interfaces
Presentation transcript:

Unit 261 Introduction to Searching and Sorting Comparable Interface Comparator Interface Algorithm Complexity Classes Exercises

Unit 262 The Comparable Interface The Comparable interface of java.lang public interface Comparable{ public abstract int compareTo(Object object); } If a class implements Comparable interface, the compareTo method defines the natural ordering of its objects when sorted. By repeated calls to compareTo method, The sorting algorithms will be able to sort, according to the natural ordering, a list of objects belonging to a class implementing Comparable interface. Several core Java classes implement Comparable. A user defined class that implements Comparable should implement the compareTo method such that : object1.compareTo(object2) is: 0if object1 “is equal to” object2 > 0if object1 “is greater than” object2 < 0if object1 “is less than” object2

Unit 263 The Comparable Interface (cont’d) It is also preferable for object1.compareTo(object2) to return 0 if and only if object1.equals(object2) is true. The compareTo method throws a ClassCastException if the type of this object and the type of the object passed as parameter are not compatible for comparison. Example 1: A BankAccount defining the natural ordering as the ascending order of accountNumbers. import java.util.*; class BankAccount implements Comparable{ private int accountNumber; private String name; private double balance; public int compareTo(Object object){ BankAccount account = (BankAccount) object; if(accountNumber < account.accountNumber) return -1; else if(accountNumber == account.accountNumber) return 0; else return 1; }

Unit 264 The Comparable Interface (cont’d) public String toString(){ return "Account#: " + accountNumber + ", Name: " + name + ", Balance: " + balance + " SR"; }} Example: Assuming that account1 and account2 are BankAccount objects, a typical call to the compareTo method is: 1. int comparisonResult = account1.compareTo(account2); 2. if(comparisonResult == 0) 3. System.out.println(“Same account”); 4. else 5. System.out.println(“Different accounts”); If we want to sort objects of a class which does not implement Comparable interface, or the class implements Comparable but we want To order its objects in a way different from the natural ordering defined by Comparable, the java.util.Comparator interface should be used.

Unit 265 The Comparator Interface The Comparator interface is one of the java collections framework interfaces. The Java collection framework is a set of important utility classes and interfaces in the java.util package for working with collections. A collection is a group of objects. Comparator interface defines how collection objects are compared. public interface Comparator{ public abstract int compare(Object object1, Object object2); public abstract boolean equals(Object object); } A class that implements Comparator should implement the compare method such that its return value is: 0if object1 “is equal to” object2 > 0if object1 “is greater than” object2 < 0if object1 “is less than” object2

Unit 266 The Comparator Interface (cont’d) It is also preferable for the compare method to return 0 if and only if object1.equals(object2) is true. The compare method throws a ClassCastException if the type of object1 and that of object2 are not compatible for comparison. The equals method concerns the Comparator object. It returns true if its parameter is a Comparator object and if it uses the same ordering as the invoking (calling) Comparator object; otherwise it returns false. Note: Since each class inherits the equals method from the Object class, it is not necessary for a class that implements the Comparator interface to implement the equals method. In our examples concerning the Comparator interface, the equals method will not be implemented.

Unit 267 The Comparator Interface (cont’d) Example 2: This example sorts the strings in reverse order of the alphabetical one. import java.util.*; class StringReverseComparator implements Comparator{ public int compare(Object object1, Object object2){ String string1 = object1.toString(); String string2 = object2.toString(); // Reverse the comparison return string2.compareTo(string1); } } class Test { public static void main(String[] args) { string[] array={"Ahmad","Mohammad","Ali","Hisham","Omar","Bilal","Hassan"}; Arrays.sort(array,new StringReverseComparator()); System.out.println(Arrays.asList(array)); }} -The sort method,in the Arrays class, sorts the array “array” according to the comparator object. Notice the comparator object provided as a parameter for the sorting method. -After printing, we get the following order: [Omar, Mohammad, Hisham, Hassan, Bilal, Ali, Ahmad]

Unit 268 The Comparator Interface (cont’d) Example 3: Here the order of the comparator is the descending order of the absolute values import java.util.*; class yComparator implements Comparator { public int compare(Object obj1, Object obj2) { int i1 = ((Integer)obj1).intValue(); int i2 = ((Integer)obj2).intValue(); return Math.abs(i2) - Math.abs(i1); }} class TestCollections2 { public static void main(String args[]) { Integer[] array = {new Integer(-200),new Integer(100), new Integer(400),new Integer(-300)}; Arrays.sort(array); System.out.println("Natural ordering: " + Arrays.asList(array)); Arrays.sort(array, new yComparator()); System.out.println("My own ordering : " + Arrays.asList(array)); }

Unit 269 The Comparator Interface (cont’d) Example 4: Here we want to order the BankAccount objects, not according to their natural ordering as defined before, but according to the opposite of the alphabetical order of the names of their owners. 2 class MyComparator implements Comparator{ 3 public int compare(Object object1, Object object2){ 4 BankAccount account1 = (BankAccount) object1; 5BankAccount account2 = (BankAccount)object2; 6String string1 = account1.getName(); 7String string2 = account2.getName(); 8// Reverse the comparison 9 return string2.compareTo(string1); 10 } 11 }

Unit 2610 Algorithm Complexity Classes Different algorithms require different amount of running time and space. The less amount of running time the more time-efficient the algorithm. The less amount of space requirements the more space-efficient the algorithm. The resources (such as time and space) required to solve a problem usually increase with an increase in the size n of the problem. Several factors affect the time and space requirements of an algorithm: hardware, language of implementation, Compiler being used, etc. The average running time of an algorithm is a function f(n) of the problem size n. Algorithms are classified into different groups (called complexity classes) based on f(n)

Unit 2611 Algorithm Complexity Classes (cont’d)

Unit 2612 Exercises 1. Write a Comparator to compare names by last name. 2. Write a Comparator to compare names by middle name. Assume that each name to be compared, consists of three names: first, middle, and last. 3. Arrange algorithm complexity classes from the most time-efficient to the least time-efficient.