2003-01-10 23:00:27 +03:00
|
|
|
/* $NetBSD: factor.c,v 1.12 2003/01/10 20:00:28 christos Exp $ */
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/*
|
1997-10-01 09:04:24 +04:00
|
|
|
* Copyright 1997 Piermont Information Systems Inc.
|
|
|
|
* All rights reserved.
|
1997-09-27 03:02:53 +04:00
|
|
|
*
|
1997-10-01 09:04:24 +04:00
|
|
|
* Written by Philip A. Nelson for Piermont Information Systems Inc.
|
1997-09-27 03:02:53 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
1999-06-20 10:08:13 +04:00
|
|
|
* This product includes software developed for the NetBSD Project by
|
1997-10-01 09:04:24 +04:00
|
|
|
* Piermont Information Systems Inc.
|
|
|
|
* 4. The name of Piermont Information Systems Inc. may not be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
1997-09-27 03:02:53 +04:00
|
|
|
*
|
1997-10-01 09:04:24 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
1997-09-27 03:02:53 +04:00
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
1997-10-01 09:04:24 +04:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
|
|
* THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
1997-09-27 03:02:53 +04:00
|
|
|
*/
|
|
|
|
|
1998-02-20 10:43:52 +03:00
|
|
|
/* Prototypes for strict prototyping. */
|
|
|
|
|
1998-06-20 17:05:48 +04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/*
|
1997-10-01 09:04:24 +04:00
|
|
|
* primes - prime table, built to include up to 46345 because
|
|
|
|
* sqrt(2^31) = 46340.9500118415
|
1997-09-27 03:02:53 +04:00
|
|
|
*
|
1997-10-01 09:04:24 +04:00
|
|
|
* building the table instead of storing a precomputed table saves
|
|
|
|
* about 19K of space on the binary image.
|
1997-09-27 03:02:53 +04:00
|
|
|
*/
|
|
|
|
|
2003-01-10 23:00:27 +03:00
|
|
|
#ifdef TESTING
|
1997-12-21 02:47:02 +03:00
|
|
|
long primes[4800];
|
1997-10-01 09:04:24 +04:00
|
|
|
int num_primes = 2;
|
1997-09-27 03:02:53 +04:00
|
|
|
|
2003-01-10 23:00:27 +03:00
|
|
|
static void build_primes (long max);
|
|
|
|
void factor (long val, long *fact_list, int fact_size, int *num_fact);
|
|
|
|
|
1998-06-20 17:05:48 +04:00
|
|
|
static void
|
|
|
|
build_primes(max)
|
|
|
|
long max;
|
1997-10-01 09:04:24 +04:00
|
|
|
{
|
|
|
|
long pc;
|
|
|
|
int j;
|
|
|
|
long rem;
|
|
|
|
|
1997-12-21 02:47:02 +03:00
|
|
|
/*
|
|
|
|
* Initialise primes at run-time rather than compile time
|
|
|
|
* so it's put in bss rather than data.
|
|
|
|
*/
|
|
|
|
primes[0] = 2;
|
|
|
|
primes[1] = 3;
|
1998-02-19 22:38:39 +03:00
|
|
|
|
1998-02-19 21:37:58 +03:00
|
|
|
for (pc = primes[num_primes-1]; pc < 46345 && pc*pc <= max; pc+=2) {
|
1997-10-01 09:04:24 +04:00
|
|
|
j = 0;
|
|
|
|
rem = 1;
|
1998-06-20 17:05:48 +04:00
|
|
|
while (j < num_primes && primes[j] * primes[j] <= pc) {
|
1997-10-01 09:04:24 +04:00
|
|
|
if ((rem = pc % primes[j]) == 0)
|
|
|
|
break;
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
if (rem)
|
|
|
|
primes[num_primes++] = pc;
|
|
|
|
}
|
|
|
|
}
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* factor: prepare a list of prime factors of val.
|
|
|
|
The last number may not be a prime factor is the list is not
|
|
|
|
long enough. */
|
|
|
|
|
1998-06-20 17:05:48 +04:00
|
|
|
void
|
|
|
|
factor(val, fact_list, fact_size, num_fact)
|
|
|
|
long val;
|
|
|
|
long *fact_list;
|
|
|
|
int fact_size;
|
|
|
|
int *num_fact;
|
1997-09-27 03:02:53 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
1997-10-01 09:04:24 +04:00
|
|
|
/* Check to make sure we have enough primes. */
|
|
|
|
build_primes(val);
|
|
|
|
|
1997-09-27 03:02:53 +04:00
|
|
|
i = 0;
|
|
|
|
*num_fact = 0;
|
|
|
|
while (*num_fact < fact_size-1 && val > 1 && i < num_primes) {
|
|
|
|
/* Find the next prime that divides. */
|
1997-10-01 09:04:24 +04:00
|
|
|
while (i < num_primes && val % primes[i] != 0) i++;
|
1997-09-27 03:02:53 +04:00
|
|
|
|
|
|
|
/* Put factors in array. */
|
|
|
|
while (*num_fact < fact_size-1 && i < num_primes &&
|
1998-06-20 17:05:48 +04:00
|
|
|
val % primes[i] == 0) {
|
1997-10-01 09:04:24 +04:00
|
|
|
fact_list[(*num_fact)++] = primes[i];
|
|
|
|
val /= primes[i];
|
1997-09-27 03:02:53 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (val > 1)
|
1997-10-01 09:04:24 +04:00
|
|
|
fact_list[(*num_fact)++] = val;
|
1997-09-27 03:02:53 +04:00
|
|
|
}
|
|
|
|
|
1998-02-20 10:43:52 +03:00
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
1998-02-20 04:40:53 +03:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
1997-09-27 03:02:53 +04:00
|
|
|
{
|
|
|
|
long facts[30];
|
|
|
|
long val;
|
|
|
|
int i, nfact;
|
1998-02-19 22:38:39 +03:00
|
|
|
int arg;
|
1997-09-27 03:02:53 +04:00
|
|
|
|
1997-10-01 09:04:24 +04:00
|
|
|
if (argc < 2) {
|
1998-02-19 22:38:39 +03:00
|
|
|
fprintf (stderr, "usage: %s numbers\n", argv[0]);
|
1997-10-01 09:04:24 +04:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1998-02-19 22:38:39 +03:00
|
|
|
/* Factor each arg! */
|
|
|
|
for (arg = 1; arg < argc; arg++) {
|
|
|
|
|
|
|
|
val = atol(argv[arg]);
|
|
|
|
factor (val, facts, 30, &nfact);
|
|
|
|
|
|
|
|
printf ("%ld:", val);
|
|
|
|
for (i = 0; i<nfact; i++)
|
|
|
|
printf (" %ld", facts[i]);
|
|
|
|
printf ("\n");
|
|
|
|
|
|
|
|
}
|
1997-09-27 03:02:53 +04:00
|
|
|
|
1998-02-19 22:38:39 +03:00
|
|
|
return 0;
|
1997-09-27 03:02:53 +04:00
|
|
|
}
|
|
|
|
#endif
|