100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
Previously searched by you
Samenvatting Datastructuren Introduction to Java Programming and Data Structures, Comprehensive Version, Global Edition, ISBN: .3 Programmeren$7.06
Add to cart
COMPLETE TEST BANK FOR INTRODUCTION TO JAVA PROGRAMMING AND DATA STRUCTURES COMPREHENSIVE VERSION, 12TH EDITION, Y. DANIEL LIANG.
,Inleiding randomisatie ........................................................................................................................................ 21
Linear congruential generator ............................................................................................................................ 22
2
, Algoritme Analyse
Tijdcomplexiteit
• Kijken naar de uitvoeringstijd
• Kijken naar de hoeveelheid ruimte die nodig is
Wat beïnvloedt de looptijd?
• Gebruikte hardware (CPU en randapparatuur)
• Kwaliteit van de code
• Gebruikte programmeertaal
• Vaardigheid van degene die het algoritme implementeert
Inputgrootte = aantal gegevens dat verwerkt moet worden
Hoe groter de dataset hoe meer tijd er nodig is om deze te sorteren
Basisbewerkingen nemen 1 tijdseenheid in beslag
• Waardetoekenningen • Vermenigvuldiging
• Delen etc.
Gezien de inputgrootte de belangrijkste factor is wordt de uitvoeringstijd als T(n) genoteerd
public double Pythagoras(double a, double b)
{
double hypothenusa = Math.sqrt( a * a + b * b); return hypothenusa; }
Voor dit algoritme is er een constante tijd nodig.
Input: positief geheel getal n
Output: waarde van de som van alle derde machten van i=1 tot n
1: s <-- 0
2: for i from 1 to n do
3: s <-- s + i3
4: return s
Regel 1 & 4: beide basisbewerkingen dus ieder 1 tijdseenheid
Regel 3: kost 3 tijdseenheden dus 3n
Regel 2: initialisatie van i kost 1 eenheid, vervolgens test of i kleiner dan n en dan ophogen van i kost
in totaal 2n+1 tijdeenheden
Totaal: T(n)=5n+3
Het is dus een lineaire functie en deze wordt genoteerd als O(n).
3
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller jperdeck. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for $7.06. You're not tied to anything after your purchase.