Skip to content

Instantly share code, notes, and snippets.

View erickdp's full-sized avatar
😼
Focusing

Erick Díaz erickdp

😼
Focusing
  • EC - Quito City
View GitHub Profile
@derlin
derlin / Polynomial.java
Created November 29, 2016 09:13
a polynomial class for java implementing the basic operations +, -, /, *, compose and integrate.
// see http://introcs.cs.princeton.edu/java/92symbolic/Polynomial.java.html
public class Polynomial{
private int[] coef; // coefficients
private int deg; // degree of polynomial (0 for the zero polynomial)
// a * x^b
public Polynomial( int a, int b ){
coef = new int[ b + 1 ];