package edu.princeton.cs.algs4.ch14; /************************************************************************* * Compilation: javac Stopwatch.java * * *************************************************************************/ import java.lang.management.ThreadMXBean; import java.lang.management.ManagementFactory; /** * The <tt>StopwatchCPU</tt> data type is for measuring * the CPU time used during a programming task. * * See {@link Stopwatch} for a version that measures wall-clock time * (the real time that elapses). * * @author Josh Hug * @author Robert Sedgewick * @author Kevin Wayne */ public class StopwatchCPU { private final ThreadMXBean threadTimer; private final long start; private static final double NANOSECONDS_PER_SECOND = 1000000000; /** * Initialize a stopwatch object. */ public StopwatchCPU() { threadTimer = ManagementFactory.getThreadMXBean(); start = threadTimer.getCurrentThreadCpuTime(); } /** * Returns the elapsed CPU time (in seconds) since the object was created. */ public double elapsedTime() { long now = threadTimer.getCurrentThreadCpuTime(); return (now - start) / NANOSECONDS_PER_SECOND; } } /************************************************************************* * Copyright 2002-2012, Robert Sedgewick and Kevin Wayne. * * This file is part of algs4-package.jar, which accompanies the textbook * * Algorithms, 4th edition by Robert Sedgewick and Kevin Wayne, * Addison-Wesley Professional, 2011, ISBN 0-321-57351-X. * http://algs4.cs.princeton.edu * * * algs4-package.jar is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * algs4-package.jar is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with algs4-package.jar. If not, see http://www.gnu.org/licenses. *************************************************************************/