Delete tps/gabaritos directory
This commit is contained in:
parent
c9db95dfb1
commit
f05cf889fa
|
|
@ -1,209 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q01 - Classe em Java/Player.java
|
||||
* @description Java class of a player from the NBA database
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id function
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) player.print();
|
||||
else System.out.println("x Player not found!");
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
[106 ## Walt Lautenbach ## 188 ## 83 ## 1922 ## University of Wisconsin ## nao informado ## nao informado]
|
||||
[1228 ## Willie Wise ## 196 ## 95 ## 1947 ## Drake University ## San Francisco ## California]
|
||||
[1307 ## James Hardy ## 203 ## 99 ## 1956 ## University of San Francisco ## Knoxville ## Alabama]
|
||||
[1397 ## Joe Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[1412 ## Darrell Griffith ## 193 ## 86 ## 1958 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1554 ## Clark Kellogg ## 201 ## 102 ## 1961 ## Ohio State University ## Cleveland ## Ohio]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1669 ## Stuart Gray ## 213 ## 106 ## 1963 ## University of California - Los Angeles ## Panama Canal Zone ## Panama]
|
||||
[1750 ## Terry Porter ## 190 ## 88 ## 1963 ## University of Wisconsin-Stevens Point ## Milwaukee ## Wisconsin]
|
||||
[1928 ## Andrew Lang ## 211 ## 111 ## 1966 ## University of Arkansas ## Pine Bluff ## Arkansas]
|
||||
[1961 ## Anthony Taylor ## 193 ## 79 ## 1965 ## University of Oregon ## Los Angeles ## California]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2108 ## Felton Spencer ## 213 ## 120 ## 1968 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2159 ## Dikembe Mutombo* ## 218 ## 111 ## 1966 ## Georgetown University ## Kinshasa ## Democratic Republic of the Congo]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2453 ## Bruce Bowen ## 201 ## 83 ## 1971 ## California State University - Fullerton ## Merced ## California]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2681 ## Jumaine Jones ## 203 ## 98 ## 1979 ## University of Georgia ## Cocoa ## Florida]
|
||||
[2735 ## Mark Madsen ## 206 ## 108 ## 1976 ## Stanford University ## Walnut Creek ## California]
|
||||
[2806 ## Antonis Fotsis ## 208 ## 99 ## 1981 ## nao informado ## Athens ## Greece]
|
||||
[2861 ## Gordan Giricek ## 198 ## 95 ## 1977 ## nao informado ## Zagreb ## Croatia]
|
||||
[2996 ## Matt Freije ## 208 ## 108 ## 1981 ## Vanderbilt University ## Overland Park ## Kansas]
|
||||
[3059 ## Noel Felix ## 206 ## 102 ## 1981 ## California State University - Fresno ## Los Angeles ## California]
|
||||
[3117 ## Hakim Warrick ## 206 ## 99 ## 1982 ## Syracuse University ## Philadelphia ## Pennsylvania]
|
||||
[3150 ## Randy Foye ## 193 ## 96 ## 1983 ## Villanova University ## Newark ## New Jersey]
|
||||
[3154 ## Daniel Gibson ## 188 ## 86 ## 1986 ## University of Texas at Austin ## Houston ## Texas]
|
||||
[3182 ## Chris Quinn ## 188 ## 83 ## 1983 ## University of Notre Dame ## New Orleans ## Louisiana]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3292 ## Steven Hill ## 213 ## 112 ## 1985 ## University of Arkansas ## Chanute ## Kansas]
|
||||
[3529 ## Jordan Williams ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[3564 ## Kris Joseph ## 201 ## 95 ## 1988 ## Syracuse University ## Montreal ## Canada]
|
||||
[3565 ## Michael Kidd-Gilchrist ## 201 ## 105 ## 1993 ## University of Kentucky ## Philadelphia ## Pennsylvania]
|
||||
[3670 ## Peyton Siva ## 183 ## 83 ## 1990 ## University of Louisville ## Seattle ## Washington]
|
||||
[3830 ## Christian Wood ## 211 ## 99 ## 1995 ## University of Nevada - Las Vegas ## Long Beach ## California]
|
||||
[3869 ## Brandon Ingram ## 206 ## 86 ## 1997 ## Duke University ## Kinston ## North Carolina]
|
||||
[3879 ## Caris LeVert ## 201 ## 92 ## 1994 ## University of Michigan ## Columbus ## Ohio]
|
||||
[70 ## Robert Hahn ## 208 ## 108 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[707 ## Jim Caldwell ## 208 ## 108 ## 1943 ## Georgia Institute of Technology ## Durham ## North Carolina]
|
||||
[723 ## Dave Lattin ## 198 ## 102 ## 1943 ## University of Texas at El Paso ## Houston ## Texas]
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
106
|
||||
1228
|
||||
1307
|
||||
1397
|
||||
1412
|
||||
1554
|
||||
1585
|
||||
1669
|
||||
1750
|
||||
1928
|
||||
1961
|
||||
2107
|
||||
2108
|
||||
2127
|
||||
2159
|
||||
2317
|
||||
2453
|
||||
2462
|
||||
2681
|
||||
2735
|
||||
2806
|
||||
2861
|
||||
2996
|
||||
3059
|
||||
3117
|
||||
3150
|
||||
3154
|
||||
3182
|
||||
3229
|
||||
3292
|
||||
3529
|
||||
3564
|
||||
3565
|
||||
3670
|
||||
3830
|
||||
3869
|
||||
3879
|
||||
70
|
||||
707
|
||||
723
|
||||
FIM
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
[106 ## Walt Lautenbach ## 188 ## 83 ## 1922 ## University of Wisconsin ## nao informado ## nao informado]
|
||||
[1228 ## Willie Wise ## 196 ## 95 ## 1947 ## Drake University ## San Francisco ## California]
|
||||
[1307 ## James Hardy ## 203 ## 99 ## 1956 ## University of San Francisco ## Knoxville ## Alabama]
|
||||
[1397 ## Joe Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[1412 ## Darrell Griffith ## 193 ## 86 ## 1958 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1554 ## Clark Kellogg ## 201 ## 102 ## 1961 ## Ohio State University ## Cleveland ## Ohio]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1669 ## Stuart Gray ## 213 ## 106 ## 1963 ## University of California - Los Angeles ## Panama Canal Zone ## Panama]
|
||||
[1750 ## Terry Porter ## 190 ## 88 ## 1963 ## University of Wisconsin-Stevens Point ## Milwaukee ## Wisconsin]
|
||||
[1928 ## Andrew Lang ## 211 ## 111 ## 1966 ## University of Arkansas ## Pine Bluff ## Arkansas]
|
||||
[1961 ## Anthony Taylor ## 193 ## 79 ## 1965 ## University of Oregon ## Los Angeles ## California]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2108 ## Felton Spencer ## 213 ## 120 ## 1968 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2159 ## Dikembe Mutombo* ## 218 ## 111 ## 1966 ## Georgetown University ## Kinshasa ## Democratic Republic of the Congo]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2453 ## Bruce Bowen ## 201 ## 83 ## 1971 ## California State University - Fullerton ## Merced ## California]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2681 ## Jumaine Jones ## 203 ## 98 ## 1979 ## University of Georgia ## Cocoa ## Florida]
|
||||
[2735 ## Mark Madsen ## 206 ## 108 ## 1976 ## Stanford University ## Walnut Creek ## California]
|
||||
[2806 ## Antonis Fotsis ## 208 ## 99 ## 1981 ## nao informado ## Athens ## Greece]
|
||||
[2861 ## Gordan Giricek ## 198 ## 95 ## 1977 ## nao informado ## Zagreb ## Croatia]
|
||||
[2996 ## Matt Freije ## 208 ## 108 ## 1981 ## Vanderbilt University ## Overland Park ## Kansas]
|
||||
[3059 ## Noel Felix ## 206 ## 102 ## 1981 ## California State University - Fresno ## Los Angeles ## California]
|
||||
[3117 ## Hakim Warrick ## 206 ## 99 ## 1982 ## Syracuse University ## Philadelphia ## Pennsylvania]
|
||||
[3150 ## Randy Foye ## 193 ## 96 ## 1983 ## Villanova University ## Newark ## New Jersey]
|
||||
[3154 ## Daniel Gibson ## 188 ## 86 ## 1986 ## University of Texas at Austin ## Houston ## Texas]
|
||||
[3182 ## Chris Quinn ## 188 ## 83 ## 1983 ## University of Notre Dame ## New Orleans ## Louisiana]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3292 ## Steven Hill ## 213 ## 112 ## 1985 ## University of Arkansas ## Chanute ## Kansas]
|
||||
[3529 ## Jordan Williams ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[3564 ## Kris Joseph ## 201 ## 95 ## 1988 ## Syracuse University ## Montreal ## Canada]
|
||||
[3565 ## Michael Kidd-Gilchrist ## 201 ## 105 ## 1993 ## University of Kentucky ## Philadelphia ## Pennsylvania]
|
||||
[3670 ## Peyton Siva ## 183 ## 83 ## 1990 ## University of Louisville ## Seattle ## Washington]
|
||||
[3830 ## Christian Wood ## 211 ## 99 ## 1995 ## University of Nevada - Las Vegas ## Long Beach ## California]
|
||||
[3869 ## Brandon Ingram ## 206 ## 86 ## 1997 ## Duke University ## Kinston ## North Carolina]
|
||||
[3879 ## Caris LeVert ## 201 ## 92 ## 1994 ## University of Michigan ## Columbus ## Ohio]
|
||||
[70 ## Robert Hahn ## 208 ## 108 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[707 ## Jim Caldwell ## 208 ## 108 ## 1943 ## Georgia Institute of Technology ## Durham ## North Carolina]
|
||||
[723 ## Dave Lattin ## 198 ## 102 ## 1943 ## University of Texas at El Paso ## Houston ## Texas]
|
||||
Binary file not shown.
|
|
@ -1,357 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q02 - Classe em C/Player.c
|
||||
* @description C file that implements the Player class.
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player players[MAX_PLAYERS];
|
||||
int playersLength = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < playersLength; i++) {
|
||||
|
||||
if(player_getId(&players[i]) == id) return &players[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
players[playersLength++] = player;
|
||||
|
||||
if(playersLength >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) player_print(player);
|
||||
else printf("x Player not found!\n");
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
[106 ## Walt Lautenbach ## 188 ## 83 ## 1922 ## University of Wisconsin ## nao informado ## nao informado]
|
||||
[1228 ## Willie Wise ## 196 ## 95 ## 1947 ## Drake University ## San Francisco ## California]
|
||||
[1307 ## James Hardy ## 203 ## 99 ## 1956 ## University of San Francisco ## Knoxville ## Alabama]
|
||||
[1397 ## Joe Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[1412 ## Darrell Griffith ## 193 ## 86 ## 1958 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1554 ## Clark Kellogg ## 201 ## 102 ## 1961 ## Ohio State University ## Cleveland ## Ohio]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1669 ## Stuart Gray ## 213 ## 106 ## 1963 ## University of California - Los Angeles ## Panama Canal Zone ## Panama]
|
||||
[1750 ## Terry Porter ## 190 ## 88 ## 1963 ## University of Wisconsin-Stevens Point ## Milwaukee ## Wisconsin]
|
||||
[1928 ## Andrew Lang ## 211 ## 111 ## 1966 ## University of Arkansas ## Pine Bluff ## Arkansas]
|
||||
[1961 ## Anthony Taylor ## 193 ## 79 ## 1965 ## University of Oregon ## Los Angeles ## California]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2108 ## Felton Spencer ## 213 ## 120 ## 1968 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2159 ## Dikembe Mutombo* ## 218 ## 111 ## 1966 ## Georgetown University ## Kinshasa ## Democratic Republic of the Congo]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2453 ## Bruce Bowen ## 201 ## 83 ## 1971 ## California State University - Fullerton ## Merced ## California]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2681 ## Jumaine Jones ## 203 ## 98 ## 1979 ## University of Georgia ## Cocoa ## Florida]
|
||||
[2735 ## Mark Madsen ## 206 ## 108 ## 1976 ## Stanford University ## Walnut Creek ## California]
|
||||
[2806 ## Antonis Fotsis ## 208 ## 99 ## 1981 ## nao informado ## Athens ## Greece]
|
||||
[2861 ## Gordan Giricek ## 198 ## 95 ## 1977 ## nao informado ## Zagreb ## Croatia]
|
||||
[2996 ## Matt Freije ## 208 ## 108 ## 1981 ## Vanderbilt University ## Overland Park ## Kansas]
|
||||
[3059 ## Noel Felix ## 206 ## 102 ## 1981 ## California State University - Fresno ## Los Angeles ## California]
|
||||
[3117 ## Hakim Warrick ## 206 ## 99 ## 1982 ## Syracuse University ## Philadelphia ## Pennsylvania]
|
||||
[3150 ## Randy Foye ## 193 ## 96 ## 1983 ## Villanova University ## Newark ## New Jersey]
|
||||
[3154 ## Daniel Gibson ## 188 ## 86 ## 1986 ## University of Texas at Austin ## Houston ## Texas]
|
||||
[3182 ## Chris Quinn ## 188 ## 83 ## 1983 ## University of Notre Dame ## New Orleans ## Louisiana]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3292 ## Steven Hill ## 213 ## 112 ## 1985 ## University of Arkansas ## Chanute ## Kansas]
|
||||
[3529 ## Jordan Williams ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[3564 ## Kris Joseph ## 201 ## 95 ## 1988 ## Syracuse University ## Montreal ## Canada]
|
||||
[3565 ## Michael Kidd-Gilchrist ## 201 ## 105 ## 1993 ## University of Kentucky ## Philadelphia ## Pennsylvania]
|
||||
[3670 ## Peyton Siva ## 183 ## 83 ## 1990 ## University of Louisville ## Seattle ## Washington]
|
||||
[3830 ## Christian Wood ## 211 ## 99 ## 1995 ## University of Nevada - Las Vegas ## Long Beach ## California]
|
||||
[3869 ## Brandon Ingram ## 206 ## 86 ## 1997 ## Duke University ## Kinston ## North Carolina]
|
||||
[3879 ## Caris LeVert ## 201 ## 92 ## 1994 ## University of Michigan ## Columbus ## Ohio]
|
||||
[70 ## Robert Hahn ## 208 ## 108 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[707 ## Jim Caldwell ## 208 ## 108 ## 1943 ## Georgia Institute of Technology ## Durham ## North Carolina]
|
||||
[723 ## Dave Lattin ## 198 ## 102 ## 1943 ## University of Texas at El Paso ## Houston ## Texas]
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
106
|
||||
1228
|
||||
1307
|
||||
1397
|
||||
1412
|
||||
1554
|
||||
1585
|
||||
1669
|
||||
1750
|
||||
1928
|
||||
1961
|
||||
2107
|
||||
2108
|
||||
2127
|
||||
2159
|
||||
2317
|
||||
2453
|
||||
2462
|
||||
2681
|
||||
2735
|
||||
2806
|
||||
2861
|
||||
2996
|
||||
3059
|
||||
3117
|
||||
3150
|
||||
3154
|
||||
3182
|
||||
3229
|
||||
3292
|
||||
3529
|
||||
3564
|
||||
3565
|
||||
3670
|
||||
3830
|
||||
3869
|
||||
3879
|
||||
70
|
||||
707
|
||||
723
|
||||
FIM
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
[106 ## Walt Lautenbach ## 188 ## 83 ## 1922 ## University of Wisconsin ## nao informado ## nao informado]
|
||||
[1228 ## Willie Wise ## 196 ## 95 ## 1947 ## Drake University ## San Francisco ## California]
|
||||
[1307 ## James Hardy ## 203 ## 99 ## 1956 ## University of San Francisco ## Knoxville ## Alabama]
|
||||
[1397 ## Joe Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[1412 ## Darrell Griffith ## 193 ## 86 ## 1958 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1554 ## Clark Kellogg ## 201 ## 102 ## 1961 ## Ohio State University ## Cleveland ## Ohio]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1669 ## Stuart Gray ## 213 ## 106 ## 1963 ## University of California - Los Angeles ## Panama Canal Zone ## Panama]
|
||||
[1750 ## Terry Porter ## 190 ## 88 ## 1963 ## University of Wisconsin-Stevens Point ## Milwaukee ## Wisconsin]
|
||||
[1928 ## Andrew Lang ## 211 ## 111 ## 1966 ## University of Arkansas ## Pine Bluff ## Arkansas]
|
||||
[1961 ## Anthony Taylor ## 193 ## 79 ## 1965 ## University of Oregon ## Los Angeles ## California]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2108 ## Felton Spencer ## 213 ## 120 ## 1968 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2159 ## Dikembe Mutombo* ## 218 ## 111 ## 1966 ## Georgetown University ## Kinshasa ## Democratic Republic of the Congo]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2453 ## Bruce Bowen ## 201 ## 83 ## 1971 ## California State University - Fullerton ## Merced ## California]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2681 ## Jumaine Jones ## 203 ## 98 ## 1979 ## University of Georgia ## Cocoa ## Florida]
|
||||
[2735 ## Mark Madsen ## 206 ## 108 ## 1976 ## Stanford University ## Walnut Creek ## California]
|
||||
[2806 ## Antonis Fotsis ## 208 ## 99 ## 1981 ## nao informado ## Athens ## Greece]
|
||||
[2861 ## Gordan Giricek ## 198 ## 95 ## 1977 ## nao informado ## Zagreb ## Croatia]
|
||||
[2996 ## Matt Freije ## 208 ## 108 ## 1981 ## Vanderbilt University ## Overland Park ## Kansas]
|
||||
[3059 ## Noel Felix ## 206 ## 102 ## 1981 ## California State University - Fresno ## Los Angeles ## California]
|
||||
[3117 ## Hakim Warrick ## 206 ## 99 ## 1982 ## Syracuse University ## Philadelphia ## Pennsylvania]
|
||||
[3150 ## Randy Foye ## 193 ## 96 ## 1983 ## Villanova University ## Newark ## New Jersey]
|
||||
[3154 ## Daniel Gibson ## 188 ## 86 ## 1986 ## University of Texas at Austin ## Houston ## Texas]
|
||||
[3182 ## Chris Quinn ## 188 ## 83 ## 1983 ## University of Notre Dame ## New Orleans ## Louisiana]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3292 ## Steven Hill ## 213 ## 112 ## 1985 ## University of Arkansas ## Chanute ## Kansas]
|
||||
[3529 ## Jordan Williams ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[3564 ## Kris Joseph ## 201 ## 95 ## 1988 ## Syracuse University ## Montreal ## Canada]
|
||||
[3565 ## Michael Kidd-Gilchrist ## 201 ## 105 ## 1993 ## University of Kentucky ## Philadelphia ## Pennsylvania]
|
||||
[3670 ## Peyton Siva ## 183 ## 83 ## 1990 ## University of Louisville ## Seattle ## Washington]
|
||||
[3830 ## Christian Wood ## 211 ## 99 ## 1995 ## University of Nevada - Las Vegas ## Long Beach ## California]
|
||||
[3869 ## Brandon Ingram ## 206 ## 86 ## 1997 ## Duke University ## Kinston ## North Carolina]
|
||||
[3879 ## Caris LeVert ## 201 ## 92 ## 1994 ## University of Michigan ## Columbus ## Ohio]
|
||||
[70 ## Robert Hahn ## 208 ## 108 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[707 ## Jim Caldwell ## 208 ## 108 ## 1943 ## Georgia Institute of Technology ## Durham ## North Carolina]
|
||||
[723 ## Dave Lattin ## 198 ## 102 ## 1943 ## University of Texas at El Paso ## Houston ## Texas]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 60ms 3724
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
import java.io.*;
|
||||
import java.util.Formatter;
|
||||
import java.util.Scanner;
|
||||
import java.io.File;
|
||||
import java.nio.charset.*;
|
||||
|
||||
public class Arq
|
||||
{
|
||||
private static String nomeArquivo = "";
|
||||
private static String charsetArquivo = "ISO-8859-1";
|
||||
private static boolean write = false, read = false;
|
||||
private static Formatter saida = null;
|
||||
private static Scanner entrada = null;
|
||||
|
||||
public static boolean openWrite(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
saida = new Formatter(nomeArq, charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = write = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWrite(String nomeArq) {
|
||||
return openWrite(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String charset, String conteudo) {
|
||||
boolean resp = openWrite(nomeArq, charset);
|
||||
if(resp == true){
|
||||
println(conteudo);
|
||||
close();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String conteudo) {
|
||||
return openWriteClose(nomeArq, charsetArquivo, conteudo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq) {
|
||||
return openRead(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
entrada = new Scanner(new File(nomeArq), charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = read = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String openReadClose(String nomeArq){
|
||||
openRead(nomeArq);
|
||||
String resp = readAll();
|
||||
close();
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void close() {
|
||||
if(write == true){
|
||||
saida.close();
|
||||
}
|
||||
if(read == true){
|
||||
entrada.close();
|
||||
}
|
||||
write = read = false;
|
||||
nomeArquivo = "";
|
||||
charsetArquivo = "ISO-8859-1";
|
||||
}
|
||||
|
||||
public static long length(){
|
||||
long resp = -1;
|
||||
if(read != write){
|
||||
File file = new File(nomeArquivo);
|
||||
resp = file.length();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void print(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static int readInt(){
|
||||
int resp = -1;
|
||||
try{
|
||||
resp = entrada.nextInt();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static char readChar(){
|
||||
char resp = ' ';
|
||||
try{
|
||||
resp = (char)entrada.nextByte();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static double readDouble(){
|
||||
double resp = -1;
|
||||
try{
|
||||
resp = Double.parseDouble(readString().replace(",","."));
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readString(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.next();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean readBoolean(){
|
||||
boolean resp = false;
|
||||
try{
|
||||
resp = (entrada.next().equals("true")) ? true : false;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readLine(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.nextLine();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
|
||||
public static boolean hasNext(){
|
||||
return entrada.hasNext();
|
||||
}
|
||||
|
||||
public static String readAll(){
|
||||
String resp = "";
|
||||
while(hasNext()){
|
||||
resp += (readLine() + "\n");
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,259 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q03 - Pesquisa Sequencial em Java/Player.java
|
||||
* @description Player class implemented with sequential search
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
ArrayList<Player> mainPlayers = new ArrayList<Player>();
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) mainPlayers.add(player);
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Read input and search for players from pub.in name entries in mainPlayers array
|
||||
|
||||
// Start benchmark
|
||||
long startTime = System.currentTimeMillis();
|
||||
int comparisons = 0;
|
||||
|
||||
// Read first line
|
||||
line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
Player foundPlayer = null;
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < mainPlayers.size(); i++) {
|
||||
|
||||
// Increment comparisons
|
||||
comparisons++;
|
||||
|
||||
// If player is found
|
||||
if(mainPlayers.get(i).getName().equals(line)) {
|
||||
|
||||
foundPlayer = mainPlayers.get(i);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if(foundPlayer != null) System.out.println("SIM");
|
||||
else System.out.println("NAO");
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
Arq.openWrite("753045_sequencial.txt");
|
||||
Arq.print("753045\t" + (System.currentTimeMillis() - startTime) + "ms\t" + comparisons);
|
||||
Arq.close();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,100 +0,0 @@
|
|||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
|
|
@ -1,151 +0,0 @@
|
|||
1
|
||||
104
|
||||
1047
|
||||
1087
|
||||
1124
|
||||
119
|
||||
1425
|
||||
1456
|
||||
1487
|
||||
149
|
||||
1494
|
||||
1525
|
||||
1565
|
||||
1572
|
||||
1583
|
||||
1702
|
||||
1731
|
||||
1742
|
||||
1748
|
||||
1786
|
||||
1796
|
||||
1809
|
||||
1868
|
||||
1880
|
||||
193
|
||||
1998
|
||||
2011
|
||||
2035
|
||||
2083
|
||||
217
|
||||
2177
|
||||
2183
|
||||
2203
|
||||
228
|
||||
401
|
||||
412
|
||||
448
|
||||
479
|
||||
53
|
||||
533
|
||||
557
|
||||
627
|
||||
687
|
||||
721
|
||||
797
|
||||
812
|
||||
848
|
||||
950
|
||||
98
|
||||
FIM
|
||||
A.J. Bramlett
|
||||
Aaron Williams
|
||||
Adrian Smith
|
||||
Al Ferrari
|
||||
Alec Kessler
|
||||
Andy Johnson
|
||||
Ariel Maughan
|
||||
Art Burris
|
||||
Ben McDonald
|
||||
Ben Poquette
|
||||
Bill Ebben
|
||||
Bill Laimbeer
|
||||
Bob Kinney
|
||||
Bob Schafer
|
||||
Bones McKinney
|
||||
Carl Shaeffer
|
||||
Cheick Diallo
|
||||
Chris Harris
|
||||
Chris Welp
|
||||
Cliff Barker
|
||||
Craig Dykema
|
||||
Curtis Kitchen
|
||||
Damian Jones
|
||||
Damjan Rudez
|
||||
Darnell Mee
|
||||
Darren Tillis
|
||||
Darryl Johnson
|
||||
Dejounte Murray
|
||||
Devin Booker
|
||||
Devyn Marble
|
||||
Dick Schnittker
|
||||
Dijon Thompson
|
||||
Donatas Motiejunas
|
||||
Ed Dahler
|
||||
Eddie Phillips
|
||||
Eric Riley
|
||||
Frank Johnson
|
||||
Frank Selvy
|
||||
Gaylon Nickerson
|
||||
George Reynolds
|
||||
Glenn McDonald
|
||||
Harold Pressley
|
||||
Hassan Whiteside
|
||||
Herb Williams
|
||||
Hiram Fuller
|
||||
Ira Newble
|
||||
Jack George
|
||||
Jack Molinas
|
||||
James Blackwell
|
||||
Jaren Jackson
|
||||
Jeff Sanders
|
||||
Jeremy Evans
|
||||
Jerry Fleishman
|
||||
Joe Buckhalter
|
||||
Joe Caldwell
|
||||
Joe Young
|
||||
John Johnson
|
||||
John Stroud
|
||||
Johnny Jones
|
||||
Johnny Orr
|
||||
Ken Johnson
|
||||
Ken Norman
|
||||
Kevin Grevey
|
||||
Kevin Willis
|
||||
Larry Drew
|
||||
Larry Sykes
|
||||
Leo Kubiak
|
||||
Lionel Chalmers
|
||||
Lorenzen Wright
|
||||
Luigi Datome
|
||||
Luis Flores
|
||||
Mamadou N'Diaye
|
||||
Marcus Fizer
|
||||
Mark Strickland
|
||||
Marvin Barnes
|
||||
Mason Plumlee
|
||||
Michael Phelps
|
||||
Michael Stewart
|
||||
Mike Davis
|
||||
Montrezl Harrell
|
||||
Nick Fazekas
|
||||
Nikola Vucevic
|
||||
Nolan Smith
|
||||
Ollie Johnson
|
||||
Omri Casspi
|
||||
Othello Hunter
|
||||
Paul Walther
|
||||
Peyton Siva
|
||||
Predrag Drobnjak
|
||||
Quincy Acy
|
||||
Ralph Drollinger
|
||||
Robert Horry
|
||||
Ron Harper
|
||||
Russ Schoene
|
||||
Sarunas Marciulionis*
|
||||
Stephen Thompson
|
||||
Thaddeus Young
|
||||
Toby Kimball
|
||||
Tony Bennett
|
||||
Walter Dukes
|
||||
FIM
|
||||
|
|
@ -1,100 +0,0 @@
|
|||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 0ms 2228
|
||||
Binary file not shown.
|
|
@ -1,439 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q04 - Pesquisa Binária em C/Player.c
|
||||
* @description C file that implements the Player class with binary search
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
|
||||
// if(player_getId(&player) == 2159) printf("attribute: %s\n", attribute);
|
||||
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Read input and search for players from pub.in name entries in mainPlayers array
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// Order mainPlayers array by name asc
|
||||
for(int i = 0; i < m; i++) {
|
||||
|
||||
for(int j = i + 1; j < m; j++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
if(strcmp(player_getName(&mainPlayers[i]), player_getName(&mainPlayers[j])) > 0) {
|
||||
|
||||
Player aux = mainPlayers[i];
|
||||
mainPlayers[i] = mainPlayers[j];
|
||||
mainPlayers[j] = aux;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Read input
|
||||
char name[MAX_NAME_SIZE];
|
||||
scanf(" %[^\n]s", name);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(name)) break;
|
||||
else {
|
||||
|
||||
// Search for player
|
||||
Player *foundPlayer = NULL;
|
||||
|
||||
// Binary search
|
||||
int left = 0;
|
||||
int right = m - 1;
|
||||
|
||||
while(left <= right) {
|
||||
|
||||
int mid = left + (right - left) / 2;
|
||||
|
||||
comparisons += 2;
|
||||
|
||||
if(strcmp(player_getName(&mainPlayers[mid]), name) == 0) {
|
||||
|
||||
foundPlayer = &mainPlayers[mid];
|
||||
break;
|
||||
}
|
||||
else if(strcmp(player_getName(&mainPlayers[mid]), name) < 0) left = mid + 1;
|
||||
else right = mid - 1;
|
||||
}
|
||||
|
||||
// Print result
|
||||
printf("%s\n", foundPlayer == NULL ? "NAO" : "SIM");
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", name);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_binaria.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,100 +0,0 @@
|
|||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
|
|
@ -1,151 +0,0 @@
|
|||
1
|
||||
104
|
||||
1047
|
||||
1087
|
||||
1124
|
||||
119
|
||||
1425
|
||||
1456
|
||||
1487
|
||||
149
|
||||
1494
|
||||
1525
|
||||
1565
|
||||
1572
|
||||
1583
|
||||
1702
|
||||
1731
|
||||
1742
|
||||
1748
|
||||
1786
|
||||
1796
|
||||
1809
|
||||
1868
|
||||
1880
|
||||
193
|
||||
1998
|
||||
2011
|
||||
2035
|
||||
2083
|
||||
217
|
||||
2177
|
||||
2183
|
||||
2203
|
||||
228
|
||||
401
|
||||
412
|
||||
448
|
||||
479
|
||||
53
|
||||
533
|
||||
557
|
||||
627
|
||||
687
|
||||
721
|
||||
797
|
||||
812
|
||||
848
|
||||
950
|
||||
98
|
||||
FIM
|
||||
A.J. Bramlett
|
||||
Aaron Williams
|
||||
Adrian Smith
|
||||
Al Ferrari
|
||||
Alec Kessler
|
||||
Andy Johnson
|
||||
Ariel Maughan
|
||||
Art Burris
|
||||
Ben McDonald
|
||||
Ben Poquette
|
||||
Bill Ebben
|
||||
Bill Laimbeer
|
||||
Bob Kinney
|
||||
Bob Schafer
|
||||
Bones McKinney
|
||||
Carl Shaeffer
|
||||
Cheick Diallo
|
||||
Chris Harris
|
||||
Chris Welp
|
||||
Cliff Barker
|
||||
Craig Dykema
|
||||
Curtis Kitchen
|
||||
Damian Jones
|
||||
Damjan Rudez
|
||||
Darnell Mee
|
||||
Darren Tillis
|
||||
Darryl Johnson
|
||||
Dejounte Murray
|
||||
Devin Booker
|
||||
Devyn Marble
|
||||
Dick Schnittker
|
||||
Dijon Thompson
|
||||
Donatas Motiejunas
|
||||
Ed Dahler
|
||||
Eddie Phillips
|
||||
Eric Riley
|
||||
Frank Johnson
|
||||
Frank Selvy
|
||||
Gaylon Nickerson
|
||||
George Reynolds
|
||||
Glenn McDonald
|
||||
Harold Pressley
|
||||
Hassan Whiteside
|
||||
Herb Williams
|
||||
Hiram Fuller
|
||||
Ira Newble
|
||||
Jack George
|
||||
Jack Molinas
|
||||
James Blackwell
|
||||
Jaren Jackson
|
||||
Jeff Sanders
|
||||
Jeremy Evans
|
||||
Jerry Fleishman
|
||||
Joe Buckhalter
|
||||
Joe Caldwell
|
||||
Joe Young
|
||||
John Johnson
|
||||
John Stroud
|
||||
Johnny Jones
|
||||
Johnny Orr
|
||||
Ken Johnson
|
||||
Ken Norman
|
||||
Kevin Grevey
|
||||
Kevin Willis
|
||||
Larry Drew
|
||||
Larry Sykes
|
||||
Leo Kubiak
|
||||
Lionel Chalmers
|
||||
Lorenzen Wright
|
||||
Luigi Datome
|
||||
Luis Flores
|
||||
Mamadou N'Diaye
|
||||
Marcus Fizer
|
||||
Mark Strickland
|
||||
Marvin Barnes
|
||||
Mason Plumlee
|
||||
Michael Phelps
|
||||
Michael Stewart
|
||||
Mike Davis
|
||||
Montrezl Harrell
|
||||
Nick Fazekas
|
||||
Nikola Vucevic
|
||||
Nolan Smith
|
||||
Ollie Johnson
|
||||
Omri Casspi
|
||||
Othello Hunter
|
||||
Paul Walther
|
||||
Peyton Siva
|
||||
Predrag Drobnjak
|
||||
Quincy Acy
|
||||
Ralph Drollinger
|
||||
Robert Horry
|
||||
Ron Harper
|
||||
Russ Schoene
|
||||
Sarunas Marciulionis*
|
||||
Stephen Thompson
|
||||
Thaddeus Young
|
||||
Toby Kimball
|
||||
Tony Bennett
|
||||
Walter Dukes
|
||||
FIM
|
||||
|
|
@ -1,100 +0,0 @@
|
|||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
SIM
|
||||
SIM
|
||||
NAO
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 24ms 106953
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
import java.io.*;
|
||||
import java.util.Formatter;
|
||||
import java.util.Scanner;
|
||||
import java.io.File;
|
||||
import java.nio.charset.*;
|
||||
|
||||
public class Arq
|
||||
{
|
||||
private static String nomeArquivo = "";
|
||||
private static String charsetArquivo = "ISO-8859-1";
|
||||
private static boolean write = false, read = false;
|
||||
private static Formatter saida = null;
|
||||
private static Scanner entrada = null;
|
||||
|
||||
public static boolean openWrite(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
saida = new Formatter(nomeArq, charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = write = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWrite(String nomeArq) {
|
||||
return openWrite(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String charset, String conteudo) {
|
||||
boolean resp = openWrite(nomeArq, charset);
|
||||
if(resp == true){
|
||||
println(conteudo);
|
||||
close();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String conteudo) {
|
||||
return openWriteClose(nomeArq, charsetArquivo, conteudo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq) {
|
||||
return openRead(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
entrada = new Scanner(new File(nomeArq), charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = read = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String openReadClose(String nomeArq){
|
||||
openRead(nomeArq);
|
||||
String resp = readAll();
|
||||
close();
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void close() {
|
||||
if(write == true){
|
||||
saida.close();
|
||||
}
|
||||
if(read == true){
|
||||
entrada.close();
|
||||
}
|
||||
write = read = false;
|
||||
nomeArquivo = "";
|
||||
charsetArquivo = "ISO-8859-1";
|
||||
}
|
||||
|
||||
public static long length(){
|
||||
long resp = -1;
|
||||
if(read != write){
|
||||
File file = new File(nomeArquivo);
|
||||
resp = file.length();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void print(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static int readInt(){
|
||||
int resp = -1;
|
||||
try{
|
||||
resp = entrada.nextInt();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static char readChar(){
|
||||
char resp = ' ';
|
||||
try{
|
||||
resp = (char)entrada.nextByte();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static double readDouble(){
|
||||
double resp = -1;
|
||||
try{
|
||||
resp = Double.parseDouble(readString().replace(",","."));
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readString(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.next();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean readBoolean(){
|
||||
boolean resp = false;
|
||||
try{
|
||||
resp = (entrada.next().equals("true")) ? true : false;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readLine(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.nextLine();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
|
||||
public static boolean hasNext(){
|
||||
return entrada.hasNext();
|
||||
}
|
||||
|
||||
public static String readAll(){
|
||||
String resp = "";
|
||||
while(hasNext()){
|
||||
resp += (readLine() + "\n");
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,255 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q05 - Ordenação por Seleção em Java
|
||||
* @description Player class implemented with selection sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
ArrayList<Player> mainPlayers = new ArrayList<Player>();
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) mainPlayers.add(player);
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "name" using selection sort
|
||||
|
||||
// Start benchmark
|
||||
long startTime = System.currentTimeMillis();
|
||||
int comparisons = 0;
|
||||
|
||||
// Selection sort
|
||||
for(int i = 0; i < mainPlayers.size() - 1; i++) {
|
||||
|
||||
// Initialize min
|
||||
int min = i;
|
||||
|
||||
// Search for min
|
||||
for(int j = i + 1; j < mainPlayers.size(); j++) {
|
||||
|
||||
// Compare
|
||||
if(mainPlayers.get(j).getName().compareTo(mainPlayers.get(min).getName()) < 0) min = j;
|
||||
|
||||
// Increment comparisons
|
||||
comparisons++;
|
||||
}
|
||||
|
||||
// Swap
|
||||
Player temp = mainPlayers.get(i);
|
||||
mainPlayers.set(i, mainPlayers.get(min));
|
||||
mainPlayers.set(min, temp);
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
Arq.openWrite("753045_selecao.txt");
|
||||
Arq.print("753045\t" + (System.currentTimeMillis() - startTime) + "ms\t" + comparisons);
|
||||
Arq.close();
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < mainPlayers.size(); i++) mainPlayers.get(i).print();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 3ms 106953
|
||||
Binary file not shown.
|
|
@ -1,402 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q06 - Ordenação por Seleção Recursiva em C/Player.c
|
||||
* @description C file that implements the Player class with recursive selection sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "name" using recursive selection sort
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// Recursive selection sort
|
||||
for(int i = 0; i < m - 1; i++) {
|
||||
|
||||
int min = i;
|
||||
|
||||
for(int j = i + 1; j < m; j++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
if(strcmp(player_getName(&mainPlayers[j]), player_getName(&mainPlayers[min])) < 0) min = j;
|
||||
}
|
||||
|
||||
Player aux = mainPlayers[i];
|
||||
mainPlayers[i] = mainPlayers[min];
|
||||
mainPlayers[min] = aux;
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_selecaoRecursiva.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < m; i++) player_print(&mainPlayers[i]);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 16ms 41751
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
import java.io.*;
|
||||
import java.util.Formatter;
|
||||
import java.util.Scanner;
|
||||
import java.io.File;
|
||||
import java.nio.charset.*;
|
||||
|
||||
public class Arq
|
||||
{
|
||||
private static String nomeArquivo = "";
|
||||
private static String charsetArquivo = "ISO-8859-1";
|
||||
private static boolean write = false, read = false;
|
||||
private static Formatter saida = null;
|
||||
private static Scanner entrada = null;
|
||||
|
||||
public static boolean openWrite(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
saida = new Formatter(nomeArq, charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = write = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWrite(String nomeArq) {
|
||||
return openWrite(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String charset, String conteudo) {
|
||||
boolean resp = openWrite(nomeArq, charset);
|
||||
if(resp == true){
|
||||
println(conteudo);
|
||||
close();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String conteudo) {
|
||||
return openWriteClose(nomeArq, charsetArquivo, conteudo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq) {
|
||||
return openRead(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
entrada = new Scanner(new File(nomeArq), charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = read = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String openReadClose(String nomeArq){
|
||||
openRead(nomeArq);
|
||||
String resp = readAll();
|
||||
close();
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void close() {
|
||||
if(write == true){
|
||||
saida.close();
|
||||
}
|
||||
if(read == true){
|
||||
entrada.close();
|
||||
}
|
||||
write = read = false;
|
||||
nomeArquivo = "";
|
||||
charsetArquivo = "ISO-8859-1";
|
||||
}
|
||||
|
||||
public static long length(){
|
||||
long resp = -1;
|
||||
if(read != write){
|
||||
File file = new File(nomeArquivo);
|
||||
resp = file.length();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void print(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static int readInt(){
|
||||
int resp = -1;
|
||||
try{
|
||||
resp = entrada.nextInt();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static char readChar(){
|
||||
char resp = ' ';
|
||||
try{
|
||||
resp = (char)entrada.nextByte();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static double readDouble(){
|
||||
double resp = -1;
|
||||
try{
|
||||
resp = Double.parseDouble(readString().replace(",","."));
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readString(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.next();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean readBoolean(){
|
||||
boolean resp = false;
|
||||
try{
|
||||
resp = (entrada.next().equals("true")) ? true : false;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readLine(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.nextLine();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
|
||||
public static boolean hasNext(){
|
||||
return entrada.hasNext();
|
||||
}
|
||||
|
||||
public static String readAll(){
|
||||
String resp = "";
|
||||
while(hasNext()){
|
||||
resp += (readLine() + "\n");
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,258 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q07 - Ordenação por Inserção em Java
|
||||
* @description Player class implemented with insertion sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
ArrayList<Player> mainPlayers = new ArrayList<Player>();
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) mainPlayers.add(player);
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "yearOfBirth" using insertion sort, in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
long startTime = System.currentTimeMillis();
|
||||
int comparisons = 0;
|
||||
|
||||
// Insertion sort
|
||||
for(int i = 1; i < mainPlayers.size(); i++) {
|
||||
|
||||
Player current = mainPlayers.get(i);
|
||||
int j = i - 1;
|
||||
|
||||
// Compare based on "yearOfBirth"
|
||||
while(j >= 0 && current.getYearOfBirth() < mainPlayers.get(j).getYearOfBirth()) {
|
||||
|
||||
mainPlayers.set(j + 1, mainPlayers.get(j));
|
||||
j--;
|
||||
comparisons++;
|
||||
}
|
||||
|
||||
// In case of a tie in "yearOfBirth," compare based on "name"
|
||||
while(j >= 0 && current.getYearOfBirth() == mainPlayers.get(j).getYearOfBirth() && current.getName().compareTo(mainPlayers.get(j).getName()) < 0) {
|
||||
|
||||
mainPlayers.set(j + 1, mainPlayers.get(j));
|
||||
j--;
|
||||
comparisons++;
|
||||
}
|
||||
|
||||
mainPlayers.set(j + 1, current);
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
Arq.openWrite("753045_insercao.txt");
|
||||
Arq.print("753045\t" + (System.currentTimeMillis() - startTime) + "ms\t" + comparisons);
|
||||
Arq.close();
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < mainPlayers.size(); i++) mainPlayers.get(i).print();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 1ms 4010
|
||||
Binary file not shown.
|
|
@ -1,417 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q08 - Shellsort em C/Player.c
|
||||
* @description C file that implements the Player class with shell sort algorithm
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "weight", in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Shell sort
|
||||
for(int gap = m / 2; gap > 0; gap /= 2) {
|
||||
|
||||
for(int i = gap; i < m; i++) {
|
||||
|
||||
Player temp = mainPlayers[i];
|
||||
int j;
|
||||
|
||||
for(j = i; j >= gap; j -= gap) {
|
||||
|
||||
if(player_getWeight(&mainPlayers[j - gap]) > player_getWeight(&temp)) {
|
||||
|
||||
comparisons++;
|
||||
mainPlayers[j] = mainPlayers[j - gap];
|
||||
}
|
||||
else if(player_getWeight(&mainPlayers[j - gap]) == player_getWeight(&temp)) {
|
||||
|
||||
// In case of a draw in weight, compare by name
|
||||
comparisons++;
|
||||
|
||||
if(strcmp(player_getName(&mainPlayers[j - gap]), player_getName(&temp)) > 0) mainPlayers[j] = mainPlayers[j - gap];
|
||||
else break;
|
||||
}
|
||||
else break;
|
||||
}
|
||||
|
||||
mainPlayers[j] = temp;
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_shellsort.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < m; i++) player_print(&mainPlayers[i]);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,464 +0,0 @@
|
|||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[222 ## Max Zaslofsky ## 188 ## 77 ## 1925 ## St. John's University ## Brooklyn ## New York]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
|
|
@ -1,466 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
222
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,464 +0,0 @@
|
|||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[222 ## Max Zaslofsky ## 188 ## 77 ## 1925 ## St. John's University ## Brooklyn ## New York]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 20ms 0
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
import java.io.*;
|
||||
import java.util.Formatter;
|
||||
import java.util.Scanner;
|
||||
import java.io.File;
|
||||
import java.nio.charset.*;
|
||||
|
||||
public class Arq
|
||||
{
|
||||
private static String nomeArquivo = "";
|
||||
private static String charsetArquivo = "ISO-8859-1";
|
||||
private static boolean write = false, read = false;
|
||||
private static Formatter saida = null;
|
||||
private static Scanner entrada = null;
|
||||
|
||||
public static boolean openWrite(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
saida = new Formatter(nomeArq, charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = write = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWrite(String nomeArq) {
|
||||
return openWrite(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String charset, String conteudo) {
|
||||
boolean resp = openWrite(nomeArq, charset);
|
||||
if(resp == true){
|
||||
println(conteudo);
|
||||
close();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String conteudo) {
|
||||
return openWriteClose(nomeArq, charsetArquivo, conteudo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq) {
|
||||
return openRead(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
entrada = new Scanner(new File(nomeArq), charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = read = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String openReadClose(String nomeArq){
|
||||
openRead(nomeArq);
|
||||
String resp = readAll();
|
||||
close();
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void close() {
|
||||
if(write == true){
|
||||
saida.close();
|
||||
}
|
||||
if(read == true){
|
||||
entrada.close();
|
||||
}
|
||||
write = read = false;
|
||||
nomeArquivo = "";
|
||||
charsetArquivo = "ISO-8859-1";
|
||||
}
|
||||
|
||||
public static long length(){
|
||||
long resp = -1;
|
||||
if(read != write){
|
||||
File file = new File(nomeArquivo);
|
||||
resp = file.length();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void print(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static int readInt(){
|
||||
int resp = -1;
|
||||
try{
|
||||
resp = entrada.nextInt();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static char readChar(){
|
||||
char resp = ' ';
|
||||
try{
|
||||
resp = (char)entrada.nextByte();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static double readDouble(){
|
||||
double resp = -1;
|
||||
try{
|
||||
resp = Double.parseDouble(readString().replace(",","."));
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readString(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.next();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean readBoolean(){
|
||||
boolean resp = false;
|
||||
try{
|
||||
resp = (entrada.next().equals("true")) ? true : false;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readLine(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.nextLine();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
|
||||
public static boolean hasNext(){
|
||||
return entrada.hasNext();
|
||||
}
|
||||
|
||||
public static String readAll(){
|
||||
String resp = "";
|
||||
while(hasNext()){
|
||||
resp += (readLine() + "\n");
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,280 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q09 - Heapsort em Java
|
||||
* @description Player class implemented with heap sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// CompareTo
|
||||
public int compareTo(Player other) {
|
||||
|
||||
// Compare by height
|
||||
int heightComparison = Integer.compare(this.height, other.height);
|
||||
|
||||
if(heightComparison != 0) return heightComparison;
|
||||
else return this.name.compareTo(other.name);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// Helper method to heapify
|
||||
static void heapify(ArrayList<Player> players, int n, int root, int comparisons) {
|
||||
|
||||
int largest = root;
|
||||
int left = 2 * root + 1;
|
||||
int right = 2 * root + 2;
|
||||
|
||||
comparisons++;
|
||||
if(left < n && players.get(left).compareTo(players.get(largest)) > 0) largest = left;
|
||||
|
||||
comparisons++;
|
||||
if(right < n && players.get(right).compareTo(players.get(largest)) > 0) largest = right;
|
||||
|
||||
if(largest != root) {
|
||||
|
||||
Player swap = players.get(root);
|
||||
players.set(root, players.get(largest));
|
||||
players.set(largest, swap);
|
||||
|
||||
heapify(players, n, largest, comparisons);
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
ArrayList<Player> mainPlayers = new ArrayList<Player>();
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) mainPlayers.add(player);
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "height" using insertion sort, in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
long startTime = System.currentTimeMillis();
|
||||
int comparisons = 0;
|
||||
|
||||
// Heap sort
|
||||
for(int i = mainPlayers.size() / 2 - 1; i >= 0; i--) heapify(mainPlayers, mainPlayers.size(), i, comparisons);
|
||||
|
||||
for(int i = mainPlayers.size() - 1; i > 0; i--) {
|
||||
|
||||
// Swap the root (maximum element) with the last player
|
||||
Player temp = mainPlayers.get(0);
|
||||
mainPlayers.set(0, mainPlayers.get(i));
|
||||
mainPlayers.set(i, temp);
|
||||
|
||||
// Heapify the reduced heap
|
||||
heapify(mainPlayers, i, 0, comparisons);
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
Arq.openWrite("753045_heapsort.txt");
|
||||
Arq.print("753045\t" + (System.currentTimeMillis() - startTime) + "ms\t" + comparisons);
|
||||
Arq.close();
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < mainPlayers.size(); i++) mainPlayers.get(i).print();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 3ms 146796
|
||||
Binary file not shown.
|
|
@ -1,414 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q10 - Quicksort em C/Player.c
|
||||
* @description C file that implements the Player class with quicksort algorithm
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "birthState", in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// Quick sort
|
||||
int i = 0, j = 0;
|
||||
|
||||
for(i = 0; i < m; i++) {
|
||||
|
||||
for(j = i + 1; j < m; j++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
if(strcmp(player_getBirthState(&mainPlayers[i]), player_getBirthState(&mainPlayers[j])) > 0) {
|
||||
|
||||
Player temp = mainPlayers[i];
|
||||
mainPlayers[i] = mainPlayers[j];
|
||||
mainPlayers[j] = temp;
|
||||
}
|
||||
else if(strcmp(player_getBirthState(&mainPlayers[i]), player_getBirthState(&mainPlayers[j])) == 0) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
if(strcmp(player_getName(&mainPlayers[i]), player_getName(&mainPlayers[j])) > 0) {
|
||||
|
||||
Player temp = mainPlayers[i];
|
||||
mainPlayers[i] = mainPlayers[j];
|
||||
mainPlayers[j] = temp;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_quicksort.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < m; i++) player_print(&mainPlayers[i]);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 16ms 8822
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
import java.io.*;
|
||||
import java.util.Formatter;
|
||||
import java.util.Scanner;
|
||||
import java.io.File;
|
||||
import java.nio.charset.*;
|
||||
|
||||
public class Arq
|
||||
{
|
||||
private static String nomeArquivo = "";
|
||||
private static String charsetArquivo = "ISO-8859-1";
|
||||
private static boolean write = false, read = false;
|
||||
private static Formatter saida = null;
|
||||
private static Scanner entrada = null;
|
||||
|
||||
public static boolean openWrite(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
saida = new Formatter(nomeArq, charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = write = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWrite(String nomeArq) {
|
||||
return openWrite(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String charset, String conteudo) {
|
||||
boolean resp = openWrite(nomeArq, charset);
|
||||
if(resp == true){
|
||||
println(conteudo);
|
||||
close();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String conteudo) {
|
||||
return openWriteClose(nomeArq, charsetArquivo, conteudo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq) {
|
||||
return openRead(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
entrada = new Scanner(new File(nomeArq), charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = read = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String openReadClose(String nomeArq){
|
||||
openRead(nomeArq);
|
||||
String resp = readAll();
|
||||
close();
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void close() {
|
||||
if(write == true){
|
||||
saida.close();
|
||||
}
|
||||
if(read == true){
|
||||
entrada.close();
|
||||
}
|
||||
write = read = false;
|
||||
nomeArquivo = "";
|
||||
charsetArquivo = "ISO-8859-1";
|
||||
}
|
||||
|
||||
public static long length(){
|
||||
long resp = -1;
|
||||
if(read != write){
|
||||
File file = new File(nomeArquivo);
|
||||
resp = file.length();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void print(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static int readInt(){
|
||||
int resp = -1;
|
||||
try{
|
||||
resp = entrada.nextInt();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static char readChar(){
|
||||
char resp = ' ';
|
||||
try{
|
||||
resp = (char)entrada.nextByte();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static double readDouble(){
|
||||
double resp = -1;
|
||||
try{
|
||||
resp = Double.parseDouble(readString().replace(",","."));
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readString(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.next();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean readBoolean(){
|
||||
boolean resp = false;
|
||||
try{
|
||||
resp = (entrada.next().equals("true")) ? true : false;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readLine(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.nextLine();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
|
||||
public static boolean hasNext(){
|
||||
return entrada.hasNext();
|
||||
}
|
||||
|
||||
public static String readAll(){
|
||||
String resp = "";
|
||||
while(hasNext()){
|
||||
resp += (readLine() + "\n");
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,305 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q11 - Counting Sort em Java
|
||||
* @description Player class implemented with counting sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// CompareTo
|
||||
public int compareTo(Player other) {
|
||||
|
||||
// Compare by height
|
||||
int heightComparison = Integer.compare(this.height, other.height);
|
||||
|
||||
if(heightComparison != 0) return heightComparison;
|
||||
else return this.name.compareTo(other.name);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// # Helper method to find the maximum height in the mainPlayers array
|
||||
private static int getMaxHeight(ArrayList<Player> players) {
|
||||
|
||||
int max = Integer.MIN_VALUE;
|
||||
|
||||
for(Player player : players) {
|
||||
|
||||
if(player.getHeight() > max) max = player.getHeight();
|
||||
}
|
||||
return max;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
ArrayList<Player> mainPlayers = new ArrayList<Player>();
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) mainPlayers.add(player);
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "height" using counting sort, in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
long startTime = System.currentTimeMillis();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Counting sort
|
||||
|
||||
// Create an array to store the counts
|
||||
int maxHeight = getMaxHeight(mainPlayers);
|
||||
int[] count = new int[maxHeight + 1];
|
||||
|
||||
// Initialize the count array
|
||||
for(int i = 0; i < mainPlayers.size(); i++) count[mainPlayers.get(i).getHeight()]++;
|
||||
|
||||
// Modify the count array to store the position of elements
|
||||
for(int i = 1; i <= maxHeight; i++) count[i] += count[i - 1];
|
||||
|
||||
// Create a temporary array to store the sorted output
|
||||
Player[] sortedPlayers = new Player[mainPlayers.size()];
|
||||
|
||||
// Build the sorted array
|
||||
for(int i = mainPlayers.size() - 1; i >= 0; i--) {
|
||||
|
||||
int height = mainPlayers.get(i).getHeight();
|
||||
sortedPlayers[count[height] - 1] = mainPlayers.get(i);
|
||||
count[height]--;
|
||||
}
|
||||
|
||||
// Copy the sorted array back to the mainPlayers array
|
||||
for(int i = 0; i < mainPlayers.size(); i++) mainPlayers.set(i, sortedPlayers[i]);
|
||||
|
||||
// Use insertion sort to order by key "height" and "name" in draw case
|
||||
for(int i = 1; i < mainPlayers.size(); i++) {
|
||||
|
||||
Player key = mainPlayers.get(i);
|
||||
int j = i - 1;
|
||||
|
||||
while(j >= 0 && mainPlayers.get(j).getHeight() == key.getHeight()) {
|
||||
|
||||
// While and if comparisons
|
||||
comparisons += 2;
|
||||
|
||||
if(mainPlayers.get(j).getName().compareTo(key.getName()) > 0) {
|
||||
|
||||
mainPlayers.set(j + 1, mainPlayers.get(j));
|
||||
j--;
|
||||
}
|
||||
else break;
|
||||
}
|
||||
|
||||
mainPlayers.set(j + 1, key);
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
Arq.openWrite("753045_countingsort.txt");
|
||||
Arq.print("753045\t" + (System.currentTimeMillis() - startTime) + "ms\t" + comparisons);
|
||||
Arq.close();
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < mainPlayers.size(); i++) mainPlayers.get(i).print();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 2ms 158824
|
||||
Binary file not shown.
|
|
@ -1,414 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q12 - Bolha em C/Player.c
|
||||
* @description C file that implements the Player class with bubble sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "birthYear", in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Bubble sort
|
||||
for(int i = 0; i < m - 1; i++) {
|
||||
|
||||
for(int j = 0; j < m - i - 1; j++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
if(player_getBirthYear(&mainPlayers[j]) > player_getBirthYear(&mainPlayers[j + 1])) {
|
||||
|
||||
Player aux = mainPlayers[j];
|
||||
mainPlayers[j] = mainPlayers[j + 1];
|
||||
mainPlayers[j + 1] = aux;
|
||||
}
|
||||
else if(player_getBirthYear(&mainPlayers[j]) == player_getBirthYear(&mainPlayers[j + 1])) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
if(strcmp(player_getName(&mainPlayers[j]), player_getName(&mainPlayers[j + 1])) > 0) {
|
||||
|
||||
Player aux = mainPlayers[j];
|
||||
mainPlayers[j] = mainPlayers[j + 1];
|
||||
mainPlayers[j + 1] = aux;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_bolha.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < m; i++) player_print(&mainPlayers[i]);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 14ms 3487
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
import java.io.*;
|
||||
import java.util.Formatter;
|
||||
import java.util.Scanner;
|
||||
import java.io.File;
|
||||
import java.nio.charset.*;
|
||||
|
||||
public class Arq
|
||||
{
|
||||
private static String nomeArquivo = "";
|
||||
private static String charsetArquivo = "ISO-8859-1";
|
||||
private static boolean write = false, read = false;
|
||||
private static Formatter saida = null;
|
||||
private static Scanner entrada = null;
|
||||
|
||||
public static boolean openWrite(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
saida = new Formatter(nomeArq, charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = write = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWrite(String nomeArq) {
|
||||
return openWrite(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String charset, String conteudo) {
|
||||
boolean resp = openWrite(nomeArq, charset);
|
||||
if(resp == true){
|
||||
println(conteudo);
|
||||
close();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String conteudo) {
|
||||
return openWriteClose(nomeArq, charsetArquivo, conteudo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq) {
|
||||
return openRead(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
entrada = new Scanner(new File(nomeArq), charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = read = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String openReadClose(String nomeArq){
|
||||
openRead(nomeArq);
|
||||
String resp = readAll();
|
||||
close();
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void close() {
|
||||
if(write == true){
|
||||
saida.close();
|
||||
}
|
||||
if(read == true){
|
||||
entrada.close();
|
||||
}
|
||||
write = read = false;
|
||||
nomeArquivo = "";
|
||||
charsetArquivo = "ISO-8859-1";
|
||||
}
|
||||
|
||||
public static long length(){
|
||||
long resp = -1;
|
||||
if(read != write){
|
||||
File file = new File(nomeArquivo);
|
||||
resp = file.length();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void print(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static int readInt(){
|
||||
int resp = -1;
|
||||
try{
|
||||
resp = entrada.nextInt();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static char readChar(){
|
||||
char resp = ' ';
|
||||
try{
|
||||
resp = (char)entrada.nextByte();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static double readDouble(){
|
||||
double resp = -1;
|
||||
try{
|
||||
resp = Double.parseDouble(readString().replace(",","."));
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readString(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.next();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean readBoolean(){
|
||||
boolean resp = false;
|
||||
try{
|
||||
resp = (entrada.next().equals("true")) ? true : false;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readLine(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.nextLine();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
|
||||
public static boolean hasNext(){
|
||||
return entrada.hasNext();
|
||||
}
|
||||
|
||||
public static String readAll(){
|
||||
String resp = "";
|
||||
while(hasNext()){
|
||||
resp += (readLine() + "\n");
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,317 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q15 - Ordenação PARCIAL por Seleção em Java
|
||||
* @description Player class implemented with parcial selection sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// CompareTo
|
||||
public int compareTo(Player other) {
|
||||
|
||||
// Compare by height
|
||||
int heightComparison = Integer.compare(this.height, other.height);
|
||||
|
||||
if(heightComparison != 0) return heightComparison;
|
||||
else return this.name.compareTo(other.name);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Merge sort helper function
|
||||
public static int mergeSort(ArrayList<Player> arr, int l, int r) {
|
||||
|
||||
if(l < r) {
|
||||
|
||||
int mid = (l + r) / 2;
|
||||
|
||||
int leftComparisons = mergeSort(arr, l, mid);
|
||||
int rightComparisons = mergeSort(arr, mid + 1, r);
|
||||
int mergeComparisons = merge(arr, l, mid, r);
|
||||
return leftComparisons + rightComparisons + mergeComparisons;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Merge function
|
||||
public static int merge(ArrayList<Player> arr, int l, int mid, int r) {
|
||||
|
||||
int comparisons = 0;
|
||||
int n1 = mid - l + 1;
|
||||
int n2 = r - mid;
|
||||
|
||||
ArrayList<Player> leftArr = new ArrayList<Player>();
|
||||
ArrayList<Player> rightArr = new ArrayList<Player>();
|
||||
|
||||
for(int i = 0; i < n1; i++) leftArr.add(arr.get(l + i));
|
||||
for(int i = 0; i < n2; i++) rightArr.add(arr.get(mid + 1 + i));
|
||||
|
||||
int i = 0, j = 0, k = l;
|
||||
|
||||
while(i < n1 && j < n2) {
|
||||
|
||||
// Compare players and increment comparisons
|
||||
comparisons++;
|
||||
|
||||
if(leftArr.get(i).getCollege().compareTo(rightArr.get(j).getCollege()) < 0 ||
|
||||
(leftArr.get(i).getCollege().equals(rightArr.get(j).getCollege()) &&
|
||||
leftArr.get(i).getName().compareTo(rightArr.get(j).getName()) <= 0)) {
|
||||
|
||||
arr.set(k, leftArr.get(i));
|
||||
i++;
|
||||
}
|
||||
else {
|
||||
|
||||
arr.set(k, rightArr.get(j));
|
||||
j++;
|
||||
}
|
||||
|
||||
k++;
|
||||
}
|
||||
|
||||
while (i < n1) {
|
||||
|
||||
arr.set(k, leftArr.get(i));
|
||||
i++;
|
||||
k++;
|
||||
}
|
||||
|
||||
while (j < n2) {
|
||||
|
||||
arr.set(k, rightArr.get(j));
|
||||
j++;
|
||||
k++;
|
||||
}
|
||||
return comparisons;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
ArrayList<Player> mainPlayers = new ArrayList<Player>();
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) mainPlayers.add(player);
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "college" using counting sort, in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
long startTime = System.currentTimeMillis();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Merge sort
|
||||
comparisons = mergeSort(mainPlayers, 0, mainPlayers.size() - 1);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
Arq.openWrite("753045_mergesort.txt");
|
||||
Arq.print("753045\t" + (System.currentTimeMillis() - startTime) + "ms\t" + comparisons);
|
||||
Arq.close();
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < mainPlayers.size(); i++) mainPlayers.get(i).print();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 0ms 6397
|
||||
Binary file not shown.
|
|
@ -1,444 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q14 - Radixsort em C/Player.c
|
||||
* @description C file that implements the Player class with radixsort algorithm
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "id"
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Radix sort
|
||||
|
||||
// Get max id
|
||||
int maxId = player_getId(&mainPlayers[0]);
|
||||
|
||||
for(int i = 1; i < m; i++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
int playerId = player_getId(&mainPlayers[i]);
|
||||
|
||||
if(playerId > maxId) {
|
||||
|
||||
maxId = playerId;
|
||||
comparisons++;
|
||||
}
|
||||
}
|
||||
|
||||
// Radix main
|
||||
for(int exp = 1; maxId / exp > 0; exp *= 10) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
Player output[m];
|
||||
int count[10] = {0};
|
||||
|
||||
for(int i = 0; i < m; i++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
int playerId = player_getId(&mainPlayers[i]);
|
||||
count[(playerId / exp) % 10]++;
|
||||
}
|
||||
|
||||
for(int i = 1; i < 10; i++) {
|
||||
|
||||
comparisons++;
|
||||
count[i] += count[i - 1];
|
||||
}
|
||||
|
||||
for(int i = m - 1; i >= 0; i--) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
int playerId = player_getId(&mainPlayers[i]);
|
||||
|
||||
output[count[(playerId / exp) % 10] - 1] = mainPlayers[i];
|
||||
count[(playerId / exp) % 10]--;
|
||||
}
|
||||
|
||||
for(int i = 0; i < m; i++) {
|
||||
|
||||
comparisons++;
|
||||
mainPlayers[i] = output[i];
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_radixsort.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < m; i++) player_print(&mainPlayers[i]);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,463 +0,0 @@
|
|||
[3 ## Ed Bartels ## 196 ## 88 ## 1925 ## North Carolina State University ## nao informado ## nao informado]
|
||||
[7 ## Nelson Bobb ## 183 ## 77 ## 1924 ## Temple University ## Philadelphia ## Pennsylvania]
|
||||
[10 ## Don Boven ## 193 ## 95 ## 1925 ## Western Michigan University ## Kalamazoo ## Michigan]
|
||||
[15 ## Frankie Brian ## 185 ## 81 ## 1923 ## Louisiana State University ## Zachary ## Louisiana]
|
||||
[33 ## Ray Corley ## 183 ## 81 ## 1928 ## Georgetown University ## nao informado ## nao informado]
|
||||
[34 ## Jack Cotton ## 201 ## 90 ## 1924 ## University of Wyoming ## Miles City ## Montana]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[46 ## Dike Eddleman ## 190 ## 85 ## 1922 ## University of Illinois at Urbana-Champaign ## Centralia ## Illinois]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
[65 ## Joe Graboski ## 201 ## 88 ## 1930 ## nao informado ## nao informado ## nao informado]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
[79 ## Marshall Hawkins ## 190 ## 92 ## 1924 ## University of Tennessee ## Huntington ## West Virginia]
|
||||
[88 ## Howie Janotta ## 190 ## 83 ## 1924 ## Seton Hall University ## nao informado ## nao informado]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[94 ## Noble Jorgensen ## 206 ## 103 ## 1925 ## University of Iowa ## nao informado ## nao informado]
|
||||
[104 ## Leo Kubiak ## 180 ## 72 ## 1927 ## Bowling Green State University ## nao informado ## nao informado]
|
||||
[122 ## Dick McGuire* ## 183 ## 81 ## 1926 ## St. John's University ## Huntington ## New York]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[144 ## Dermie O'Connell ## 183 ## 78 ## 1928 ## College of the Holy Cross ## nao informado ## nao informado]
|
||||
[145 ## Andy O'Donnell ## 185 ## 81 ## 1925 ## Loyola College in Maryland ## nao informado ## nao informado]
|
||||
[146 ## Dick O'Keefe ## 188 ## 83 ## 1923 ## Santa Clara University ## San Francisco ## California]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[154 ## Jack Parkinson ## 183 ## 78 ## 1924 ## University of Kentucky ## Yorktown ## Indiana]
|
||||
[183 ## Milt Schoon ## 201 ## 104 ## 1922 ## Valparaiso University ## nao informado ## nao informado]
|
||||
[204 ## Mike Todorovich ## 196 ## 99 ## 1923 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[208 ## Dick Triptow ## 183 ## 77 ## 1922 ## DePaul University ## Chicago ## Illinois]
|
||||
[211 ## Ernie Vandeweghe ## 190 ## 88 ## 1928 ## Colgate University ## Montreal ## Canada]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[233 ## Bob Cousy* ## 185 ## 79 ## 1928 ## College of the Holy Cross ## New York ## New York]
|
||||
[246 ## Ken Murray ## 188 ## 86 ## 1928 ## St. Bonaventure University ## nao informado ## nao informado]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[255 ## Don Barksdale* ## 198 ## 90 ## 1923 ## University of California- Los Angeles ## Oakland ## California]
|
||||
[264 ## Mel Hutchins ## 198 ## 90 ## 1928 ## Brigham Young University ## Sacramento ## California]
|
||||
[267 ## George King ## 183 ## 79 ## 1928 ## University of Charleston ## Charleston ## West Virginia]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[282 ## Jim Slaughter ## 211 ## 95 ## 1928 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[287 ## Dick Bunt ## 183 ## 77 ## 1930 ## New York University ## Queens ## New York]
|
||||
[289 ## Pete Darcey ## 201 ## 98 ## 1930 ## Oklahoma State University ## nao informado ## nao informado]
|
||||
[291 ## Danny Finn ## 185 ## 83 ## 1928 ## St. John's University ## nao informado ## nao informado]
|
||||
[295 ## Jim Holstein ## 190 ## 81 ## 1930 ## University of Cincinnati ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[299 ## Jack McCloskey ## 188 ## 86 ## 1925 ## University of Pennsylvania ## Mahanoy City ## Pennsylvania]
|
||||
[309 ## Mike O'Neill ## 190 ## 95 ## 1928 ## University of California ## nao informado ## nao informado]
|
||||
[313 ## Moe Radovich ## 183 ## 72 ## 1929 ## University of Wyoming ## nao informado ## nao informado]
|
||||
[345 ## Frank Reddout ## 196 ## 88 ## 1935 ## Syracuse University ## nao informado ## nao informado]
|
||||
[370 ## Ronnie MacGilvray ## 188 ## 83 ## 1930 ## St. John's University ## nao informado ## nao informado]
|
||||
[395 ## Walter Dukes ## 213 ## 99 ## 1930 ## Seton Hall University ## Rochester ## New York]
|
||||
[403 ## Larry Hennessy ## 190 ## 83 ## 1929 ## Villanova University ## nao informado ## nao informado]
|
||||
[419 ## Bob Armstrong ## 203 ## 99 ## 1933 ## Michigan State University ## Detroit ## Michigan]
|
||||
[430 ## Phil Jordon ## 208 ## 92 ## 1933 ## Whitworth ## Lakeport ## California]
|
||||
[439 ## Ron Shavlik ## 203 ## 90 ## 1933 ## North Carolina State University ## Denver ## Colorado]
|
||||
[444 ## Doug Bolstorff ## 193 ## 88 ## 1931 ## University of Minnesota ## nao informado ## nao informado]
|
||||
[462 ## Charlie Tyra ## 203 ## 104 ## 1935 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[467 ## Bucky Bockhorn ## 193 ## 90 ## 1933 ## University of Dayton ## Campbell Hill ## Illinois]
|
||||
[471 ## Connie Dierking ## 206 ## 100 ## 1936 ## University of Cincinnati ## Brooklyn ## New York]
|
||||
[479 ## Andy Johnson ## 196 ## 97 ## 1932 ## University of Portland ## Los Angeles ## California]
|
||||
[483 ## Jim Palmer ## 203 ## 101 ## 1933 ## University of Dayton ## Keokee ## Virginia]
|
||||
[496 ## Johnny Green ## 196 ## 90 ## 1933 ## Michigan State University ## Dayton ## Ohio]
|
||||
[511 ## Dave Budd ## 198 ## 92 ## 1938 ## Wake Forest University ## Woodbury ## New Jersey]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[545 ## York Larese ## 193 ## 83 ## 1938 ## University of North Carolina ## New York ## New York]
|
||||
[558 ## Bill Smith ## 196 ## 86 ## 1939 ## Saint Peter's College ## nao informado ## nao informado]
|
||||
[563 ## Dave Zeller ## 185 ## 79 ## 1939 ## Miami University ## nao informado ## nao informado]
|
||||
[566 ## Bill Bridges ## 198 ## 103 ## 1939 ## University of Kansas ## Hobbs ## New Mexico]
|
||||
[575 ## Jack Foley ## 190 ## 77 ## 1939 ## College of the Holy Cross ## Worcester ## Massachusetts]
|
||||
[587 ## Bud Olsen ## 203 ## 99 ## 1940 ## University of Louisville ## nao informado ## nao informado]
|
||||
[588 ## John Rudometkin ## 198 ## 92 ## 1940 ## University of Southern California ## Santa Maria ## California]
|
||||
[590 ## Tom Stith ## 196 ## 95 ## 1939 ## St. Bonaventure University ## Greenville County ## Virginia]
|
||||
[593 ## Gene Tormohlen ## 183 ## 83 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[599 ## Gene Wiley ## 208 ## 95 ## 1937 ## Wichita State University ## nao informado ## nao informado]
|
||||
[602 ## Mel Gibson ## 190 ## 81 ## 1940 ## Western Carolina University ## Cordova ## North Carolina]
|
||||
[605 ## Jerry Harkness ## 188 ## 79 ## 1940 ## Loyola University of Chicago ## New York ## New York]
|
||||
[610 ## Jim King ## 188 ## 79 ## 1941 ## University of Tulsa ## Tulsa ## Oklahoma]
|
||||
[618 ## Tom Thacker ## 188 ## 77 ## 1939 ## University of Cincinnati ## Covington ## Kentucky]
|
||||
[630 ## Jerry Grote ## 193 ## 97 ## 1940 ## Loyola Marymount University ## nao informado ## nao informado]
|
||||
[634 ## Luke Jackson ## 206 ## 108 ## 1941 ## University of Texas-Pan American ## San Marcos ## Texas]
|
||||
[640 ## McCoy McLemore ## 201 ## 104 ## 1942 ## Drake University ## Houston ## Texas]
|
||||
[651 ## Barry Clemens ## 198 ## 95 ## 1943 ## Ohio Wesleyan University ## Dayton ## Ohio]
|
||||
[665 ## Dick Van ## 208 ## 106 ## 1940 ## nao informado ## nao informado ## nao informado]
|
||||
[672 ## Johnny Austin ## 183 ## 77 ## 1944 ## Boston College ## Washington ## District of Columbia]
|
||||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[686 ## Neil Johnson ## 203 ## 95 ## 1929 ## Ohio State University ## Chillicothe ## Ohio]
|
||||
[713 ## Jim Fox ## 208 ## 104 ## 1943 ## University of South Carolina ## Atlanta ## Georgia]
|
||||
[717 ## Dennis Hamilton ## 203 ## 95 ## 1944 ## Arizona State University ## Huntington Beach ## California]
|
||||
[726 ## Paul Long ## 188 ## 81 ## 1944 ## Wake Forest University ## Louisville ## Kentucky]
|
||||
[738 ## Bill Turner ## 201 ## 99 ## 1944 ## University of Akron ## nao informado ## nao informado]
|
||||
[749 ## Harry Barnes ## 190 ## 92 ## 1945 ## Northeastern University ## nao informado ## nao informado]
|
||||
[760 ## Skip Harlicka ## 185 ## 83 ## 1946 ## University of South Carolina ## nao informado ## nao informado]
|
||||
[769 ## Stu Lantz ## 190 ## 79 ## 1946 ## University of Nebraska ## Uniontown ## Pennsylvania]
|
||||
[772 ## Dave Newmark ## 213 ## 108 ## 1946 ## Columbia University ## Brooklyn ## New York]
|
||||
[775 ## Charlie Paulk ## 203 ## 99 ## 1946 ## Northeastern State University ## Fitzgerald ## Georgia]
|
||||
[787 ## Ron Williams ## 190 ## 85 ## 1944 ## West Virginia University ## Weirton ## West Virginia]
|
||||
[788 ## Sam Williams ## 190 ## 81 ## 1945 ## University of Iowa ## nao informado ## nao informado]
|
||||
[797 ## Mike Davis ## 190 ## 83 ## 1946 ## Virginia Union University ## Brooklyn ## New York]
|
||||
[805 ## Mike Lynn ## 201 ## 97 ## 1945 ## University of California - Los Angeles ## Covina ## California]
|
||||
[806 ## Willie McCarter ## 190 ## 79 ## 1946 ## Drake University ## Gary ## Indiana]
|
||||
[808 ## Grady O'Malley ## 196 ## 92 ## 1948 ## Manhattan College ## Boston ## Massachusetts]
|
||||
[826 ## Moe Barr ## 193 ## 88 ## 1944 ## Duquesne University ## nao informado ## nao informado]
|
||||
[831 ## Dave Cowens* ## 206 ## 104 ## 1948 ## Florida State University ## Newport ## Kentucky]
|
||||
[833 ## Terry Driscoll ## 201 ## 97 ## 1947 ## Boston College ## Winthrop ## Massachusetts]
|
||||
[845 ## John Hummer ## 206 ## 104 ## 1948 ## Princeton University ## Washington ## District of Columbia]
|
||||
[868 ## Dave Sorenson ## 203 ## 102 ## 1948 ## Ohio State University ## nao informado ## nao informado]
|
||||
[874 ## Rudy Tomjanovich ## 203 ## 98 ## 1948 ## University of Michigan ## Hamtramck ## Michigan]
|
||||
[886 ## Vic Bartolome ## 213 ## 104 ## 1948 ## Oregon State University ## nao informado ## nao informado]
|
||||
[889 ## Sid Catlett ## 198 ## 104 ## 1948 ## University of Notre Dame ## nao informado ## nao informado]
|
||||
[892 ## Charlie Davis ## 188 ## 72 ## 1949 ## Wake Forest University ## New York ## New York]
|
||||
[902 ## Charlie Lowery ## 190 ## 83 ## 1949 ## University of Puget Sound ## nao informado ## nao informado]
|
||||
[910 ## Barry Nelson ## 208 ## 104 ## 1949 ## Duquesne University ## nao informado ## nao informado]
|
||||
[919 ## Curtis Rowe ## 201 ## 102 ## 1949 ## University of California - Los Angeles ## Bessemer ## Alabama]
|
||||
[921 ## Elmore Smith ## 213 ## 113 ## 1949 ## Kentucky State University ## Macon ## Georgia]
|
||||
[936 ## Roger Brown ## 196 ## 92 ## 1942 ## University of Dayton ## Brooklyn ## New York]
|
||||
[947 ## Travis Grant ## 201 ## 97 ## 1950 ## Kentucky State University ## Clayton ## Alabama]
|
||||
[953 ## LaRue Martin ## 211 ## 94 ## 1950 ## Loyola University of Chicago ## Chicago ## Illinois]
|
||||
[954 ## Bob McAdoo* ## 206 ## 95 ## 1951 ## University of North Carolina ## Greensboro ## North Carolina]
|
||||
[966 ## Frank Russell ## 190 ## 81 ## 1949 ## University of Detroit Mercy ## nao informado ## nao informado]
|
||||
[969 ## Bud Stallworth ## 196 ## 86 ## 1950 ## University of Kansas ## Hartselle ## Alabama]
|
||||
[975 ## Harthorne Wingo ## 198 ## 95 ## 1947 ## Friendship Junior College ## Tryon ## North Carolina]
|
||||
[980 ## Jim Brewer ## 206 ## 95 ## 1951 ## University of Minnesota ## Maywood ## Illinois]
|
||||
[982 ## John Brown ## 201 ## 99 ## 1951 ## University of Missouri ## Frankfurt ## Germany]
|
||||
[984 ## Bill Chamberlain ## 198 ## 85 ## 1949 ## University of North Carolina ## nao informado ## nao informado]
|
||||
[1022 ## Leon Benbow ## 193 ## 83 ## 1950 ## Jacksonville University ## Columbia ## South Carolina]
|
||||
[1026 ## Harvey Catchings ## 206 ## 98 ## 1951 ## Hardin-Simmons University ## Jackson ## Mississippi]
|
||||
[1046 ## Phil Lumpkin ## 183 ## 74 ## 1951 ## Miami University ## Dayton ## Ohio]
|
||||
[1086 ## Donnie Freeman ## 190 ## 83 ## 1944 ## University of Illinois at Urbana-Champaign ## Madison ## Illinois]
|
||||
[1103 ## Jim McElroy ## 190 ## 86 ## 1953 ## Central Michigan University ## Cotton Plant ## Arkansas]
|
||||
[1118 ## Rudy White ## 188 ## 88 ## 1953 ## Arizona State University ## Silver City ## New Mexico]
|
||||
[1122 ## Bird Averitt ## 185 ## 77 ## 1952 ## Pepperdine University ## Hopkinsville ## Kentucky]
|
||||
[1144 ## Coby Dietrick ## 208 ## 99 ## 1948 ## San Jose State University ## Riverside ## California]
|
||||
[1145 ## Leon Douglas ## 208 ## 104 ## 1954 ## University of Alabama ## Leighton ## Alabama]
|
||||
[1146 ## Mike Dunleavy ## 190 ## 81 ## 1954 ## University of South Carolina ## Brooklyn ## New York]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[1152 ## Butch Feher ## 193 ## 83 ## 1954 ## Vanderbilt University ## Flint ## Michigan]
|
||||
[1160 ## Steve Green ## 201 ## 99 ## 1953 ## Indiana University ## Madison ## Wisconsin]
|
||||
[1165 ## Darnell Hillman ## 206 ## 97 ## 1949 ## San Jose State University ## Sacramento ## California]
|
||||
[1169 ## Dennis Johnson* ## 193 ## 83 ## 1954 ## Pepperdine University ## San Pedro ## California]
|
||||
[1171 ## Caldwell Jones ## 211 ## 98 ## 1950 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1173 ## Robin Jones ## 206 ## 102 ## 1954 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[1183 ## John Lucas ## 190 ## 79 ## 1953 ## University of Maryland ## Durham ## North Carolina]
|
||||
[1188 ## Ted McClain ## 185 ## 81 ## 1946 ## Tennessee State University ## Nashville ## Tennessee]
|
||||
[1201 ## Dan Roundfield ## 203 ## 92 ## 1953 ## Central Michigan University ## Detroit ## Michigan]
|
||||
[1208 ## Keith Starr ## 198 ## 86 ## 1954 ## University of Pittsburgh ## Sewickley ## Pennsylvania]
|
||||
[1212 ## Ira Terrell ## 203 ## 90 ## 1954 ## Southern Methodist University ## Dallas ## Texas]
|
||||
[1220 ## Lloyd Walton ## 183 ## 72 ## 1953 ## Marquette University ## Chicago ## Illinois]
|
||||
[1227 ## John Williamson ## 188 ## 83 ## 1951 ## New Mexico State University ## New Haven ## Connecticut]
|
||||
[1231 ## Greg Ballard ## 201 ## 97 ## 1955 ## University of Oregon ## Los Angeles ## California]
|
||||
[1232 ## Kent Benson ## 208 ## 106 ## 1954 ## Indiana University ## New Castle ## Indiana]
|
||||
[1235 ## Jim Bostic ## 201 ## 102 ## 1953 ## New Mexico State University ## Brooklyn ## New York]
|
||||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[1248 ## James Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1249 ## Bo Ellis ## 196 ## 83 ## 1936 ## Niagara University ## nao informado ## nao informado]
|
||||
[1252 ## Mike Glenn ## 188 ## 79 ## 1955 ## Southern Illinois University ## Rome ## Georgia]
|
||||
[1253 ## Glen Gondrezick ## 198 ## 98 ## 1955 ## University of Nevada - Las Vegas ## Boulder ## Colorado]
|
||||
[1259 ## Larry Johnson ## 190 ## 92 ## 1954 ## University of Kentucky ## Morganfield ## Kentucky]
|
||||
[1280 ## Steve Sheppard ## 198 ## 97 ## 1954 ## University of Maryland ## New York ## New York]
|
||||
[1292 ## Greg Bunch ## 198 ## 86 ## 1956 ## California State University - Fullerton ## San Bernardino ## California]
|
||||
[1303 ## Phil Ford ## 188 ## 79 ## 1956 ## University of North Carolina ## Rocky Mount ## North Carolina]
|
||||
[1320 ## Roger Phegley ## 198 ## 92 ## 1956 ## Bradley University ## East Peoria ## Illinois]
|
||||
[1334 ## Terry Tyler ## 201 ## 97 ## 1956 ## University of Detroit Mercy ## Detroit ## Michigan]
|
||||
[1336 ## Jerome Whitehead ## 208 ## 99 ## 1956 ## Marquette University ## Waukegan ## Illinois]
|
||||
[1350 ## Paul Dawkins ## 196 ## 86 ## 1957 ## Northern Illinois University ## Saginaw ## Michigan]
|
||||
[1358 ## Roy Hamilton ## 188 ## 81 ## 1957 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1367 ## Vinnie Johnson ## 188 ## 90 ## 1956 ## Baylor University ## Brooklyn ## New York]
|
||||
[1389 ## Bubba Wilson ## 190 ## 79 ## 1955 ## Western Carolina University ## Gastonia ## North Carolina]
|
||||
[1401 ## Don Collins ## 198 ## 81 ## 1951 ## Illinois State University ## Christopher ## Illinois]
|
||||
[1415 ## Mike Harper ## 208 ## 88 ## 1957 ## North Park University ## Chicago ## Illinois]
|
||||
[1417 ## Tony Jackson ## 193 ## 90 ## 1942 ## St. John's University ## Brooklyn ## New York]
|
||||
[1435 ## Johnny Moore ## 185 ## 79 ## 1958 ## University of Texas at Austin ## Altoona ## Pennsylvania]
|
||||
[1442 ## Louis Orr ## 203 ## 79 ## 1958 ## Syracuse University ## Cincinnati ## Ohio]
|
||||
[1461 ## Brett Vroman ## 213 ## 99 ## 1955 ## University of Nevada - Las Vegas ## Hollywood ## California]
|
||||
[1464 ## James Wilkes ## 198 ## 86 ## 1953 ## University of California - Los Angeles ## Berkeley ## California]
|
||||
[1465 ## Jeff Wilkins ## 211 ## 104 ## 1955 ## Illinois State University ## Chicago ## Illinois]
|
||||
[1466 ## Mike Woodson ## 196 ## 88 ## 1958 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[1472 ## Rolando Blackman ## 198 ## 86 ## 1959 ## Kansas State University ## Panama City ## Panama]
|
||||
[1473 ## Ray Blume ## 193 ## 83 ## 1958 ## Oregon State University ## Valdosta ## Georgia]
|
||||
[1501 ## Kevin Loder ## 198 ## 92 ## 1959 ## Alabama State University ## Cassopolis ## Michigan]
|
||||
[1508 ## Kurt Nimphius ## 208 ## 98 ## 1958 ## Arizona State University ## Milwaukee ## Wisconsin]
|
||||
[1525 ## Herb Williams ## 208 ## 109 ## 1958 ## Ohio State University ## Columbus ## Ohio]
|
||||
[1541 ## Jerry Eaves ## 193 ## 81 ## 1959 ## University of Louisville ## Louisville ## Kentucky]
|
||||
[1545 ## Sleepy Floyd ## 190 ## 77 ## 1960 ## Georgetown University ## Gastonia ## North Carolina]
|
||||
[1549 ## Rod Higgins ## 201 ## 90 ## 1960 ## California State University - Fresno ## Monroe ## Louisiana]
|
||||
[1555 ## Joe Kopicki ## 206 ## 108 ## 1960 ## University of Detroit Mercy ## Warren ## Michigan]
|
||||
[1558 ## Steve Lingenfelter ## 206 ## 102 ## 1958 ## South Dakota State University ## Eau Claire ## Wisconsin]
|
||||
[1559 ## Dave Magley ## 203 ## 91 ## 1959 ## University of Kansas ## South Bend ## Indiana]
|
||||
[1568 ## Paul Pressey ## 196 ## 83 ## 1958 ## University of Tulsa ## Richmond ## Virginia]
|
||||
[1585 ## Trent Tucker ## 196 ## 87 ## 1959 ## University of Minnesota ## Tarboro ## North Carolina]
|
||||
[1587 ## Rory White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[1597 ## Howard Carter ## 196 ## 97 ## 1961 ## Louisiana State University ## Baton Rouge ## Louisiana]
|
||||
[1613 ## Charles Jones ## 206 ## 97 ## 1957 ## Albany State University ## McGehee ## Arkansas]
|
||||
[1618 ## Sidney Lowe ## 183 ## 88 ## 1960 ## North Carolina State University ## Washington ## District of Columbia]
|
||||
[1630 ## Fred Roberts ## 208 ## 98 ## 1960 ## Brigham Young University ## Provo ## Utah]
|
||||
[1631 ## Ralph Sampson* ## 224 ## 103 ## 1960 ## University of Virginia ## Harrisonburg ## Virginia]
|
||||
[1650 ## Ken Bannister ## 206 ## 106 ## 1960 ## Saint Augustine's College ## Baltimore ## Maryland]
|
||||
[1656 ## Steve Burtt ## 188 ## 83 ## 1962 ## Iona College ## New York ## New York]
|
||||
[1672 ## Ralph Jackson ## 188 ## 86 ## 1962 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[1675 ## Michael Jordan* ## 198 ## 88 ## 1963 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1680 ## Sam Perkins ## 206 ## 106 ## 1961 ## University of North Carolina ## Brooklyn ## New York]
|
||||
[1686 ## Tom Scheffler ## 211 ## 108 ## 1954 ## Purdue University ## St. Joseph ## Michigan]
|
||||
[1693 ## Peter Thibeaux ## 201 ## 95 ## 1961 ## Saint Mary's College of California ## Los Angeles ## California]
|
||||
[1702 ## Kevin Willis ## 188 ## 79 ## 1961 ## St. John's University ## New York ## New York]
|
||||
[1704 ## Leon Wood ## 190 ## 83 ## 1962 ## California State University - Fullerton ## Columbia ## South Carolina]
|
||||
[1718 ## Ron Crevier ## 213 ## 106 ## 1958 ## Boston College ## Montreal ## Canada]
|
||||
[1730 ## Alfredrick Hughes ## 198 ## 92 ## 1960 ## nao informado ## nao informado ## nao informado]
|
||||
[1733 ## Harold Keeling ## 193 ## 83 ## 1963 ## Santa Clara University ## New Orleans ## Louisiana]
|
||||
[1739 ## Brian Martin ## 206 ## 96 ## 1962 ## University of Kansas ## Fort Smith ## Arkansas]
|
||||
[1740 ## Dwayne McClain ## 198 ## 83 ## 1963 ## Villanova University ## Worcester ## Massachusetts]
|
||||
[1743 ## Chris McNealy ## 201 ## 95 ## 1961 ## San Jose State University ## Fresno ## California]
|
||||
[1744 ## Dirk Minniefield ## 190 ## 81 ## 1961 ## University of Kentucky ## Lexington ## Kentucky]
|
||||
[1752 ## Jerry Reynolds ## 203 ## 90 ## 1962 ## Louisiana State University ## Brooklyn ## New York]
|
||||
[1768 ## Voise Winters ## 203 ## 90 ## 1962 ## Bradley University ## Chicago ## Illinois]
|
||||
[1772 ## Walter Berry ## 203 ## 97 ## 1964 ## St. John's University ## New York ## New York]
|
||||
[1785 ## Grant Gondrezick ## 196 ## 92 ## 1963 ## Pepperdine University ## Boulder ## Colorado]
|
||||
[1798 ## Jim Lampley ## 208 ## 104 ## 1960 ## University of Arkansas at Little Rock ## Harrisburg ## Pennsylvania]
|
||||
[1805 ## Johnny Newman ## 201 ## 86 ## 1963 ## University of Richmond ## Danville ## Virginia]
|
||||
[1807 ## Chuck Person ## 203 ## 99 ## 1964 ## Auburn University ## Brantley ## Alabama]
|
||||
[1810 ## Mark Price ## 183 ## 77 ## 1964 ## Georgia Institute of Technology ## Bartlesville ## Oklahoma]
|
||||
[1829 ## Brad Wright ## 211 ## 102 ## 1962 ## University of California - Los Angeles ## Hollywood ## California]
|
||||
[1833 ## Greg Anderson ## 208 ## 104 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1835 ## Vincent Askew ## 198 ## 95 ## 1966 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[1839 ## Dallas Comegys ## 206 ## 92 ## 1964 ## DePaul University ## Philadelphia ## Pennsylvania]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[1842 ## Chris Dudley ## 188 ## 81 ## 1950 ## University of Washington ## Harrisburg ## Pennsylvania]
|
||||
[1853 ## Mark Jackson ## 185 ## 81 ## 1965 ## St. John's University ## Brooklyn ## New York]
|
||||
[1870 ## Olden Polynice ## 211 ## 99 ## 1964 ## University of Virginia ## Port-au-Prince ## Haiti]
|
||||
[1884 ## Reggie Williams ## 201 ## 86 ## 1964 ## Georgetown University ## Baltimore ## Maryland]
|
||||
[1887 ## Rickie Winslow ## 203 ## 102 ## 1964 ## University of Houston ## Houston ## Texas]
|
||||
[1914 ## Ron Grandison ## 198 ## 97 ## 1964 ## University of New Orleans ## Los Angeles ## California]
|
||||
[1923 ## Bill Jones ## 201 ## 79 ## 1966 ## University of Iowa ## Detroit ## Michigan]
|
||||
[1939 ## Craig Neal ## 196 ## 74 ## 1964 ## Georgia Institute of Technology ## Muncie ## Indiana]
|
||||
[1940 ## Jose Ortiz ## 208 ## 102 ## 1963 ## Oregon State University ## Albonito ## Puerto Rico]
|
||||
[1950 ## Rony Seikaly ## 211 ## 104 ## 1965 ## Syracuse University ## Beirut ## Lebanon]
|
||||
[1951 ## Charles Shackleford ## 208 ## 102 ## 1966 ## North Carolina State University ## Kinston ## North Carolina]
|
||||
[1958 ## Everette Stephens ## 188 ## 79 ## 1966 ## Purdue University ## Evanston ## Illinois]
|
||||
[1959 ## Rod Strickland ## 196 ## 90 ## 1940 ## Jacksonville University ## Jacksonville ## Florida]
|
||||
[1973 ## Mookie Blaylock ## 183 ## 81 ## 1967 ## University of Oklahoma ## Garland ## Texas]
|
||||
[1975 ## Raymond Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[1985 ## Terry Dozier ## 206 ## 95 ## 1966 ## University of South Carolina ## Baltimore ## Maryland]
|
||||
[1987 ## Jay Edwards ## 213 ## 102 ## 1955 ## University of Washington ## Seattle ## Washington]
|
||||
[1988 ## Sean Elliott ## 203 ## 92 ## 1968 ## University of Arizona ## Tucson ## Arizona]
|
||||
[1992 ## Scott Haffner ## 190 ## 81 ## 1966 ## University of Evansville ## Terre Haute ## Indiana]
|
||||
[1995 ## Mike Higgins ## 206 ## 99 ## 1967 ## University of Northern Colorado ## Grand Island ## Nebraska]
|
||||
[2011 ## Sarunas Marciulionis* ## 196 ## 90 ## 1964 ## nao informado ## Kaunas ## Lithuania]
|
||||
[2019 ## Sam Mitchell ## 198 ## 95 ## 1963 ## Mercer University ## Columbus ## Georgia]
|
||||
[2020 ## Mike Morrison ## 193 ## 88 ## 1967 ## Loyola College in Maryland ## Washington ## District of Columbia]
|
||||
[2023 ## Zarko Paspalj ## 206 ## 97 ## 1966 ## nao informado ## Pljevlja ## Montenegro]
|
||||
[2024 ## Kenny Payne ## 203 ## 88 ## 1966 ## University of Louisville ## Laurel ## Mississippi]
|
||||
[2025 ## Drazen Petrovic* ## 196 ## 88 ## 1964 ## nao informado ## Sibenik ## Croatia]
|
||||
[2040 ## Henry Turner ## 188 ## 88 ## 1938 ## University of Nebraska ## nao informado ## nao informado]
|
||||
[2046 ## Haywoode Workman ## 188 ## 81 ## 1966 ## Oral Roberts University ## Charlotte ## North Carolina]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2052 ## Lance Blanks ## 193 ## 86 ## 1966 ## University of Texas at Austin ## Del Rio ## Texas]
|
||||
[2056 ## Matt Bullard ## 208 ## 97 ## 1967 ## University of Iowa ## Des Moines ## Iowa]
|
||||
[2067 ## Mario Elie ## 196 ## 95 ## 1963 ## American International College ## New York ## New York]
|
||||
[2069 ## Danny Ferry ## 208 ## 104 ## 1966 ## Duke University ## Hyattsville ## Maryland]
|
||||
[2075 ## Jim Grandholm ## 213 ## 106 ## 1960 ## University of South Florida ## Elkhart ## Indiana]
|
||||
[2087 ## Marcus Liberty ## 203 ## 92 ## 1968 ## University of Illinois at Urbana-Champaign ## Chicago ## Illinois]
|
||||
[2088 ## Ian Lockhart ## 203 ## 108 ## 1967 ## University of Tennessee ## Nassau ## Bahamas]
|
||||
[2092 ## Chris Munk ## 206 ## 102 ## 1967 ## University of Southern California ## San Francisco ## California]
|
||||
[2107 ## Tony Smith ## 201 ## 95 ## 1968 ## nao informado ## nao informado ## nao informado]
|
||||
[2117 ## Kennard Winchester ## 196 ## 95 ## 1966 ## Averett University ## Chestertown ## Maryland]
|
||||
[2124 ## Isaac Austin ## 208 ## 115 ## 1969 ## Arizona State University ## Gridley ## California]
|
||||
[2126 ## David Benoit ## 203 ## 99 ## 1968 ## University of Alabama ## Lafayette ## Louisiana]
|
||||
[2127 ## Terrell Brandon ## 180 ## 81 ## 1970 ## University of Oregon ## Portland ## Oregon]
|
||||
[2130 ## Randy Brown ## 203 ## 99 ## 1965 ## University of Idaho ## Atlanta ## Georgia]
|
||||
[2132 ## Pete Chilcutt ## 208 ## 104 ## 1968 ## University of North Carolina ## Sumter ## South Carolina]
|
||||
[2137 ## Dale Davis ## 211 ## 104 ## 1969 ## Clemson University ## Toccoa ## Georgia]
|
||||
[2182 ## Jon Barry ## 193 ## 88 ## 1969 ## Georgia Institute of Technology ## Oakland ## California]
|
||||
[2198 ## LaPhonso Ellis ## 203 ## 108 ## 1970 ## University of Notre Dame ## East St. Louis ## Illinois]
|
||||
[2203 ## Robert Horry ## 206 ## 99 ## 1970 ## University of Alabama ## Andalusia ## Alabama]
|
||||
[2204 ## Byron Houston ## 196 ## 113 ## 1969 ## Oklahoma State University ## Watonga ## Kansas]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[2215 ## Lee Mayberry ## 185 ## 78 ## 1970 ## University of Arkansas ## Tulsa ## Oklahoma]
|
||||
[2216 ## Oliver Miller ## 206 ## 127 ## 1970 ## University of Arkansas ## Fort Worth ## Texas]
|
||||
[2227 ## Anthony Pullard ## 208 ## 111 ## 1966 ## McNeese State University ## DeQuincy ## Louisiana]
|
||||
[2246 ## Vin Baker ## 211 ## 105 ## 1971 ## University of Hartford ## Lake Wales ## Florida]
|
||||
[2261 ## Bill Edwards ## 203 ## 97 ## 1971 ## Wright State University ## Middletown ## Ohio]
|
||||
[2275 ## Scott Haskin ## 211 ## 113 ## 1970 ## Oregon State University ## Riverside ## California]
|
||||
[2297 ## Gheorghe Muresan ## 231 ## 137 ## 1971 ## nao informado ## Triteni ## Romania]
|
||||
[2312 ## Matt Wenstrom ## 216 ## 113 ## 1970 ## University of North Carolina ## Minneapolis ## Minnesota]
|
||||
[2317 ## Derrick Alston ## 211 ## 102 ## 1972 ## Duquesne University ## Bronx ## New York]
|
||||
[2323 ## Chris Childs ## 190 ## 88 ## 1967 ## Boise State University ## Bakersfield ## California]
|
||||
[2326 ## Tony Dumas ## 198 ## 86 ## 1972 ## University of Missouri-Kansas City ## Chicago ## Illinois]
|
||||
[2327 ## Howard Eisley ## 188 ## 80 ## 1972 ## Boston College ## Detroit ## Michigan]
|
||||
[2360 ## Clifford Rozier ## 211 ## 111 ## 1972 ## University of Louisville ## Bradenton ## Florida]
|
||||
[2361 ## Trevor Ruffin ## 185 ## 83 ## 1970 ## University of Hawaii ## Buffalo ## New York]
|
||||
[2383 ## Travis Best ## 180 ## 82 ## 1972 ## Georgia Institute of Technology ## Springfield ## Massachusetts]
|
||||
[2398 ## Vincenzo Esposito ## 190 ## 89 ## 1969 ## nao informado ## Caserta ## Italy]
|
||||
[2402 ## Anthony Goldwire ## 185 ## 82 ## 1971 ## University of Houston ## West Palm Beach ## Florida]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[2406 ## Fred Hoiberg ## 193 ## 92 ## 1972 ## Iowa State University ## Lincoln ## Nebraska]
|
||||
[2408 ## Frankie King ## 185 ## 83 ## 1972 ## Western Carolina University ## Baxley ## Georgia]
|
||||
[2429 ## Shawn Respert ## 185 ## 88 ## 1972 ## Michigan State University ## Detroit ## Michigan]
|
||||
[2433 ## Joe Smith ## 213 ## 106 ## 1944 ## University of Southern Colorado ## Columbus ## Mississippi]
|
||||
[2448 ## George Zidek ## 213 ## 113 ## 1973 ## University of California - Los Angeles ## Zlin ## Czech Republic]
|
||||
[2462 ## Tony Delk ## 185 ## 85 ## 1974 ## University of Kentucky ## Covington ## Tennessee]
|
||||
[2470 ## Reggie Geary ## 188 ## 84 ## 1973 ## University of Arizona ## Trenton ## New Jersey]
|
||||
[2472 ## Evric Gray ## 201 ## 106 ## 1969 ## University of Nevada - Las Vegas ## Bloomington ## California]
|
||||
[2478 ## Mark Hendrickson ## 206 ## 99 ## 1974 ## Washington State University ## Mount Vernon ## Washington]
|
||||
[2482 ## Priest Lauderdale ## 224 ## 147 ## 1973 ## Central State University ## Chicago ## Illinois]
|
||||
[2514 ## John Wallace ## 203 ## 102 ## 1974 ## Syracuse University ## Rochester ## New York]
|
||||
[2522 ## Tony Battie ## 211 ## 104 ## 1976 ## Texas Tech University ## Dallas ## Texas]
|
||||
[2532 ## Austin Croshere ## 206 ## 106 ## 1975 ## Providence College ## Los Angeles ## California]
|
||||
[2534 ## Antonio Daniels ## 193 ## 88 ## 1975 ## Bowling Green State University ## Columbus ## Ohio]
|
||||
[2535 ## Tim Duncan ## 211 ## 113 ## 1976 ## Wake Forest University ## St. Croix ## U.S. Virgin Islands]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[2546 ## Troy Hudson ## 185 ## 77 ## 1976 ## Southern Illinois University ## Carbondale ## Illinois]
|
||||
[2559 ## Charles O'Bannon ## 196 ## 94 ## 1975 ## University of California - Los Angeles ## Bellflower ## California]
|
||||
[2564 ## Rodrick Rhodes ## 198 ## 102 ## 1973 ## University of Southern California ## Jersey City ## New Jersey]
|
||||
[2569 ## Ed Stokes ## 213 ## 119 ## 1971 ## University of Arizona ## Syracuse ## New York]
|
||||
[2576 ## Eric Washington ## 193 ## 86 ## 1974 ## University of Alabama ## Pearl ## Mississippi]
|
||||
[2582 ## Peter Aluma ## 208 ## 117 ## 1973 ## Liberty University ## Lagos ## Nigeria]
|
||||
[2586 ## Mike Bibby ## 185 ## 86 ## 1978 ## University of Arizona ## Cherry Hill ## New Jersey]
|
||||
[2589 ## Cory Carr ## 190 ## 95 ## 1975 ## Texas Tech University ## Fordyce ## Arkansas]
|
||||
[2596 ## Bryce Drew ## 188 ## 83 ## 1974 ## Valparaiso University ## Baton Rouge ## Louisiana]
|
||||
[2600 ## Matt Harpring ## 201 ## 104 ## 1976 ## Georgia Institute of Technology ## Cincinnati ## Ohio]
|
||||
[2603 ## Larry Hughes ## 196 ## 83 ## 1979 ## Saint Louis University ## St. Louis ## Missouri]
|
||||
[2617 ## Jelani McCoy ## 208 ## 111 ## 1977 ## University of California - Los Angeles ## Oakland ## California]
|
||||
[2619 ## Brad Miller ## 211 ## 110 ## 1976 ## Purdue University ## Fort Wayne ## Indiana]
|
||||
[2621 ## Nazr Mohammed ## 208 ## 100 ## 1977 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[2623 ## Makhtar N'Diaye ## 203 ## 111 ## 1973 ## University of North Carolina ## Dakar ## Senegal]
|
||||
[2628 ## Andrae Patterson ## 206 ## 107 ## 1975 ## Indiana University ## Riverside ## California]
|
||||
[2631 ## Casey Shaw ## 211 ## 117 ## 1975 ## University of Toledo ## Lebanon ## Ohio]
|
||||
[2636 ## Ryan Stack ## 211 ## 97 ## 1975 ## University of South Carolina ## Nashville ## Tennessee]
|
||||
[2643 ## Jahidi White ## 206 ## 131 ## 1976 ## Georgetown University ## St. Louis ## Missouri]
|
||||
[2653 ## Lazaro Borrell ## 203 ## 99 ## 1972 ## nao informado ## Santa Clara ## Cuba]
|
||||
[2654 ## Cal Bowdler ## 208 ## 111 ## 1977 ## Old Dominion University ## Sharps ## Virginia]
|
||||
[2655 ## Ryan Bowen ## 201 ## 97 ## 1975 ## University of Iowa ## Fort Madison ## Iowa]
|
||||
[2663 ## Vonteego Cummings ## 190 ## 83 ## 1976 ## University of Pittsburgh ## Thomson ## Georgia]
|
||||
[2675 ## Derek Hood ## 203 ## 100 ## 1976 ## University of Arkansas ## Kansas City ## Missouri]
|
||||
[2682 ## Lari Ketner ## 206 ## 125 ## 1977 ## University of Massachusetts Amherst ## Philadelphia ## Pennsylvania]
|
||||
[2683 ## Trajan Langdon ## 190 ## 89 ## 1976 ## Duke University ## Palo Alto ## California]
|
||||
[2690 ## Lamar Odom ## 208 ## 99 ## 1979 ## University of Rhode Island ## Jamaica ## New York]
|
||||
[2698 ## Michael Ruffin ## 206 ## 111 ## 1977 ## University of Tulsa ## Denver ## Colorado]
|
||||
[2701 ## Jamel Thomas ## 198 ## 97 ## 1973 ## Providence College ## Brooklyn ## New York]
|
||||
[2712 ## Mark Blount ## 213 ## 104 ## 1975 ## University of Pittsburgh ## Dobbs Ferry ## New York]
|
||||
[2738 ## Desmond Mason ## 201 ## 101 ## 1977 ## Oklahoma State University ## Waxahachie ## Texas]
|
||||
[2751 ## Olumide Oyedeji ## 208 ## 108 ## 1981 ## nao informado ## Ibadan ## Nigeria]
|
||||
[2752 ## Andy Panko ## 206 ## 100 ## 1977 ## Lebanon Valley College ## Harrisburg ## Pennsylvania]
|
||||
[2789 ## Ernest Brown ## 213 ## 110 ## 1979 ## Indian Hills Community College ## Bronx ## New York]
|
||||
[2792 ## Tierre Brown ## 188 ## 85 ## 1979 ## McNeese State University ## Iowa ## Louisiana]
|
||||
[2809 ## Eddie Griffin ## 208 ## 99 ## 1982 ## Seton Hall University ## Philadelphia ## Pennsylvania]
|
||||
[2813 ## Brendan Haywood ## 213 ## 121 ## 1979 ## University of North Carolina ## New York ## New York]
|
||||
[2827 ## Jason Richardson ## 198 ## 99 ## 1981 ## Michigan State University ## Saginaw ## Michigan]
|
||||
[2843 ## Rodney White ## 203 ## 95 ## 1959 ## University of South Alabama ## Tuskegee ## Alabama]
|
||||
[2863 ## Marcus Haislip ## 208 ## 104 ## 1980 ## University of Tennessee ## Lewisburg ## Tennessee]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2865 ## Junior Harrington ## 193 ## 81 ## 1980 ## Wingate University ## Wagram ## North Carolina]
|
||||
[2866 ## Juaquin Hawkins ## 201 ## 99 ## 1973 ## California State University - Long Beach ## Gardena ## California]
|
||||
[2870 ## Casey Jacobsen ## 198 ## 97 ## 1981 ## Stanford University ## Glendora ## California]
|
||||
[2880 ## Bostjan Nachbar ## 206 ## 100 ## 1980 ## nao informado ## Slovenj Gradec ## Slovenia]
|
||||
[2888 ## Antoine Rigaudeau ## 201 ## 95 ## 1971 ## nao informado ## Cholet ## France]
|
||||
[2904 ## Jay Williams ## 206 ## 108 ## 1968 ## St. John's University ## Ritter ## South Carolina]
|
||||
[2914 ## Keith Bogans ## 196 ## 97 ## 1980 ## University of Kentucky ## Alexandria ## Virginia]
|
||||
[2916 ## Chris Bosh ## 211 ## 106 ## 1984 ## Georgia Institute of Technology ## Dallas ## Texas]
|
||||
[2921 ## Brian Cook ## 206 ## 106 ## 1980 ## University of Illinois at Urbana-Champaign ## Lincoln ## Illinois]
|
||||
[2930 ## Desmond Ferguson ## 201 ## 92 ## 1977 ## University of Detroit Mercy ## Lansing ## Michigan]
|
||||
[2933 ## Hiram Fuller ## 206 ## 108 ## 1981 ## California State University - Fresno ## East St. Louis ## Missouri]
|
||||
[2960 ## Kirk Penney ## 196 ## 99 ## 1980 ## University of Wisconsin ## Auckland ## New Zealand]
|
||||
[2963 ## Zoran Planinic ## 201 ## 88 ## 1982 ## nao informado ## Mostar ## Bosnia and Herzegovina]
|
||||
[2997 ## Ben Gordon ## 190 ## 90 ## 1983 ## University of Connecticut ## London ## United Kingdom]
|
||||
[3000 ## Dwight Howard ## 211 ## 120 ## 1985 ## nao informado ## Atlanta ## Georgia]
|
||||
[3010 ## Nenad Krstic ## 213 ## 108 ## 1983 ## nao informado ## Kraljevo ## Serbia]
|
||||
[3029 ## Awvee Storey ## 198 ## 100 ## 1977 ## Arizona State University ## Chicago ## Illinois]
|
||||
[3045 ## Earl Barron ## 213 ## 113 ## 1981 ## University of Memphis ## Clarksdale ## Mississippi]
|
||||
[3060 ## Raymond Felton ## 185 ## 92 ## 1984 ## University of North Carolina ## Marion ## South Carolina]
|
||||
[3067 ## Joey Graham ## 201 ## 102 ## 1982 ## Oklahoma State University ## Wilmington ## Delaware]
|
||||
[3078 ## Jarrett Jack ## 190 ## 90 ## 1983 ## Georgia Institute of Technology ## Fort Washington ## Maryland]
|
||||
[3079 ## Sarunas Jasikevicius ## 193 ## 88 ## 1976 ## University of Maryland ## Kaunas ## Lithuania]
|
||||
[3084 ## David Lee ## 201 ## 102 ## 1942 ## University of San Francisco ## Modesto ## California]
|
||||
[3096 ## Chris Paul ## 183 ## 79 ## 1985 ## Wake Forest University ## Winston-Salem ## North Carolina]
|
||||
[3109 ## Salim Stoudamire ## 185 ## 81 ## 1982 ## University of Arizona ## Portland ## Oregon]
|
||||
[3127 ## Maurice Ager ## 196 ## 91 ## 1984 ## Michigan State University ## Detroit ## Michigan]
|
||||
[3128 ## LaMarcus Aldridge ## 211 ## 117 ## 1985 ## University of Texas at Austin ## Dallas ## Texas]
|
||||
[3138 ## Cedric Bozeman ## 198 ## 93 ## 1983 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3139 ## Ronnie Brewer ## 193 ## 81 ## 1955 ## University of Arkansas ## Fort Smith ## Arkansas]
|
||||
[3149 ## Desmon Farmer ## 196 ## 99 ## 1981 ## University of Southern California ## Flint ## Michigan]
|
||||
[3157 ## Mike Hall ## 203 ## 104 ## 1984 ## George Washington University ## Chicago ## Illinois]
|
||||
[3189 ## Thabo Sefolosha ## 201 ## 99 ## 1984 ## nao informado ## Vevey ## Switzerland]
|
||||
[3208 ## Joel Anthony ## 206 ## 111 ## 1982 ## University of Nevada - Las Vegas ## Montreal ## Canada]
|
||||
[3227 ## Taurean Green ## 183 ## 80 ## 1986 ## University of Florida ## Fort Lauderdale ## Florida]
|
||||
[3229 ## Spencer Hawes ## 216 ## 111 ## 1988 ## University of Washington ## Seattle ## Washington]
|
||||
[3241 ## Juan Carlos ## 203 ## 92 ## 1980 ## nao informado ## nao informado ## nao informado]
|
||||
[3261 ## Mario West ## 208 ## 104 ## 1960 ## Old Dominion University ## Petersburg ## Virginia]
|
||||
[3277 ## Joe Crawford ## 196 ## 95 ## 1986 ## University of Kentucky ## Detroit ## Michigan]
|
||||
[3284 ## J.R. Giddens ## 216 ## 115 ## 1985 ## nao informado ## nao informado ## nao informado]
|
||||
[3289 ## Roy Hibbert ## 218 ## 122 ## 1986 ## Georgetown University ## Queens ## New York]
|
||||
[3299 ## Kosta Koufos ## 213 ## 120 ## 1989 ## Ohio State University ## Canton ## Ohio]
|
||||
[3308 ## JaVale McGee ## 213 ## 122 ## 1988 ## University of Nevada - Reno ## Flint ## Michigan]
|
||||
[3313 ## Derrick Rose ## 190 ## 86 ## 1988 ## University of Memphis ## Chicago ## Illinois]
|
||||
[3315 ## Walter Sharpe ## 206 ## 111 ## 1986 ## University of Alabama at Birmingham ## Huntsville ## Alabama]
|
||||
[3325 ## Russell Westbrook ## 190 ## 90 ## 1988 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[3330 ## Antonio Anderson ## 188 ## 83 ## 1945 ## Canisius College ## Buffalo ## New York]
|
||||
[3331 ## Jeff Ayres ## 188 ## 83 ## 1945 ## nao informado ## nao informado ## nao informado]
|
||||
[3346 ## Toney Douglas ## 188 ## 88 ## 1986 ## Florida State University ## Jonesboro ## Georgia]
|
||||
[3355 ## Taylor Griffin ## 201 ## 107 ## 1986 ## University of Oklahoma ## Oklahoma City ## Oklahoma]
|
||||
[3358 ## Jordan Hill ## 208 ## 106 ## 1987 ## University of Arizona ## Atlanta ## Georgia]
|
||||
[3368 ## Oliver Lafayette ## 188 ## 86 ## 1984 ## University of Houston ## Baton Rouge ## Louisiana]
|
||||
[3370 ## Ty Lawson ## 180 ## 88 ## 1987 ## University of North Carolina ## Clinton ## Maryland]
|
||||
[3374 ## Patty Mills ## 203 ## 111 ## 1985 ## Louisiana Tech University ## Monroe ## Louisiana]
|
||||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3387 ## Cole Aldrich ## 211 ## 113 ## 1988 ## University of Kansas ## Burnsville ## Minnesota]
|
||||
[3394 ## Craig Brackins ## 208 ## 104 ## 1987 ## Iowa State University ## Los Angeles ## California]
|
||||
[3397 ## Sherron Collins ## 180 ## 92 ## 1987 ## University of Kansas ## Chicago ## Illinois]
|
||||
[3403 ## Devin Ebanks ## 206 ## 97 ## 1989 ## West Virginia University ## Queens ## New York]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[3427 ## Timofey Mozgov ## 216 ## 124 ## 1986 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3439 ## Mustafa Shakur ## 190 ## 86 ## 1984 ## University of Arizona ## Philadelphia ## Pennsylvania]
|
||||
[3474 ## Tobias Harris ## 190 ## 86 ## 1967 ## University of New Orleans ## Monroe ## Louisiana]
|
||||
[3475 ## Cory Higgins ## 196 ## 81 ## 1989 ## University of Colorado ## Danville ## California]
|
||||
[3477 ## Tyler Honeycutt ## 203 ## 85 ## 1990 ## University of California - Los Angeles ## Los Angeles ## California]
|
||||
[3494 ## DeAndre Liggins ## 198 ## 94 ## 1988 ## University of Kentucky ## Chicago ## Illinois]
|
||||
[3501 ## Daniel Orton ## 208 ## 115 ## 1990 ## University of Kentucky ## Oklahoma City ## Oklahoma]
|
||||
[3516 ## Lance Thomas ## 203 ## 106 ## 1988 ## Duke University ## Brooklyn ## New York]
|
||||
[3520 ## Mychel Thompson ## 208 ## 102 ## 1955 ## University of Minnesota ## Nassau ## Bahamas]
|
||||
[3525 ## Nikola Vucevic ## 213 ## 117 ## 1990 ## University of Southern California ## Morges ## Switzerland]
|
||||
[3548 ## Evan Fournier ## 201 ## 92 ## 1992 ## nao informado ## Saint-Maurice ## France]
|
||||
[3559 ## Darius Johnson-Odom ## 201 ## 95 ## 1970 ## Syracuse University ## Morgan City ## Louisiana]
|
||||
[3582 ## Tim Ohlbrecht ## 211 ## 115 ## 1988 ## nao informado ## Wuppertal ## Germany]
|
||||
[3586 ## Brian Roberts ## 185 ## 78 ## 1985 ## University of Dayton ## Toledo ## Ohio]
|
||||
[3588 ## Terrence Ross ## 201 ## 93 ## 1991 ## University of Washington ## Portland ## Oregon]
|
||||
[3595 ## Jared Sullinger ## 206 ## 117 ## 1992 ## Ohio State University ## Columbus ## Ohio]
|
||||
[3620 ## Michael Carter-Williams ## 198 ## 86 ## 1991 ## Syracuse University ## Hamilton ## Massachusetts]
|
||||
[3628 ## Brandon Davies ## 208 ## 108 ## 1991 ## Brigham Young University ## Philadelphia ## Pennsylvania]
|
||||
[3629 ## Dewayne Dedmon ## 213 ## 111 ## 1989 ## University of Southern California ## Lancaster ## California]
|
||||
[3638 ## Jorge Gutierrez ## 190 ## 86 ## 1988 ## University of California ## Chihuahua ## Mexico]
|
||||
[3639 ## Justin Hamilton ## 213 ## 117 ## 1990 ## Louisiana State University ## Newport Beach ## California]
|
||||
[3643 ## Robbie Hummel ## 203 ## 97 ## 1989 ## Purdue University ## Valparaiso ## Indiana]
|
||||
[3644 ## Sergey Karasev ## 201 ## 94 ## 1993 ## nao informado ## St. Petersburg ## Russia]
|
||||
[3659 ## Nemanja Nedovic ## 190 ## 87 ## 1991 ## nao informado ## Nova Varos ## Serbia]
|
||||
[3664 ## Mason Plumlee ## 211 ## 111 ## 1990 ## Duke University ## Fort Wayne ## Indiana]
|
||||
[3667 ## Miroslav Raduljica ## 213 ## 113 ## 1988 ## nao informado ## Belgrade ## Serbia]
|
||||
[3671 ## Tony Snell ## 201 ## 90 ## 1991 ## University of New Mexico ## Riverside ## California]
|
||||
[3682 ## Furkan Aldemir ## 208 ## 108 ## 1991 ## nao informado ## Konak ## Turkey]
|
||||
[3698 ## Andre Dawkins ## 196 ## 97 ## 1991 ## Duke University ## Fairfax ## Virginia]
|
||||
[3719 ## Nick Johnson ## 190 ## 91 ## 1992 ## University of Arizona ## Tempe ## Arizona]
|
||||
[3728 ## K.J. McDaniels ## 198 ## 90 ## 1992 ## nao informado ## nao informado ## nao informado]
|
||||
[3729 ## Doug McDermott ## 203 ## 102 ## 1992 ## Creighton University ## Grand Forks ## North Dakota]
|
||||
[3734 ## Eric Moreland ## 208 ## 107 ## 1991 ## Oregon State University ## Houston ## Texas]
|
||||
[3744 ## Dwight Powell ## 211 ## 108 ## 1991 ## Stanford University ## Toronto ## Canada]
|
||||
[3745 ## Julius Randle ## 206 ## 113 ## 1994 ## University of Kentucky ## Dallas ## Texas]
|
||||
[3746 ## Damjan Rudez ## 208 ## 103 ## 1986 ## nao informado ## Zagreb ## Croatia]
|
||||
[3757 ## Shayne Whittington ## 211 ## 113 ## 1991 ## Western Michigan University ## Paw Paw ## Michigan]
|
||||
[3778 ## Jerian Grant ## 203 ## 95 ## 1994 ## Syracuse University ## Portland ## Oregon]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[3783 ## Rondae Hollis-Jefferson ## 201 ## 99 ## 1995 ## University of Arizona ## Chester ## Pennsylvania]
|
||||
[3787 ## R.J. Hunter ## 201 ## 104 ## 1991 ## nao informado ## nao informado ## nao informado]
|
||||
[3789 ## Stanley Johnson ## 203 ## 99 ## 1944 ## Murray State University ## Clairton ## Pennsylvania]
|
||||
[3795 ## Trey Lyles ## 208 ## 106 ## 1995 ## University of Kentucky ## Saskatoon ## Canada]
|
||||
[3814 ## Kristaps Porzingis ## 221 ## 108 ## 1995 ## nao informado ## Liepaja ## Latvia]
|
||||
[3821 ## Alex Stepheson ## 208 ## 122 ## 1987 ## University of Southern California ## Los Angeles ## California]
|
||||
[3826 ## Rashad Vaughn ## 198 ## 91 ## 1996 ## University of Nevada - Las Vegas ## Minneapolis ## Minnesota]
|
||||
[3829 ## Justise Winslow ## 201 ## 102 ## 1996 ## Duke University ## Houston ## Texas]
|
||||
[3834 ## Ron Baker ## 193 ## 99 ## 1993 ## Wichita State University ## Hays ## Kansas]
|
||||
[3838 ## Dragan Bender ## 216 ## 102 ## 1997 ## nao informado ## Capljina ## Bosnia and Herzegovina]
|
||||
[3844 ## Nicolas Brussino ## 201 ## 88 ## 1993 ## nao informado ## Santa Fe ## Argentina]
|
||||
[3850 ## Cheick Diallo ## 206 ## 99 ## 1996 ## University of Kansas ## Kayes ## Mali]
|
||||
[3851 ## Kris Dunn ## 193 ## 95 ## 1994 ## Providence College ## New London ## Connecticut]
|
||||
[3862 ## Treveon Graham ## 198 ## 99 ## 1993 ## Virginia Commonwealth University ## Washington ## District of Columbia]
|
||||
[3877 ## Nicolas Laprovittola ## 193 ## 81 ## 1990 ## nao informado ## Buenos Aires ## Argentina]
|
||||
[3896 ## Jakob Poeltl ## 213 ## 112 ## 1995 ## University of Utah ## Vienna ## Austria]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 13ms 4575
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
import java.io.*;
|
||||
import java.util.Formatter;
|
||||
import java.util.Scanner;
|
||||
import java.io.File;
|
||||
import java.nio.charset.*;
|
||||
|
||||
public class Arq
|
||||
{
|
||||
private static String nomeArquivo = "";
|
||||
private static String charsetArquivo = "ISO-8859-1";
|
||||
private static boolean write = false, read = false;
|
||||
private static Formatter saida = null;
|
||||
private static Scanner entrada = null;
|
||||
|
||||
public static boolean openWrite(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
saida = new Formatter(nomeArq, charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = write = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWrite(String nomeArq) {
|
||||
return openWrite(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String charset, String conteudo) {
|
||||
boolean resp = openWrite(nomeArq, charset);
|
||||
if(resp == true){
|
||||
println(conteudo);
|
||||
close();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean openWriteClose(String nomeArq, String conteudo) {
|
||||
return openWriteClose(nomeArq, charsetArquivo, conteudo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq) {
|
||||
return openRead(nomeArq, charsetArquivo);
|
||||
}
|
||||
|
||||
public static boolean openRead(String nomeArq, String charset) {
|
||||
boolean resp = false;
|
||||
close();
|
||||
try{
|
||||
entrada = new Scanner(new File(nomeArq), charset);
|
||||
nomeArquivo = nomeArq;
|
||||
resp = read = true;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String openReadClose(String nomeArq){
|
||||
openRead(nomeArq);
|
||||
String resp = readAll();
|
||||
close();
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void close() {
|
||||
if(write == true){
|
||||
saida.close();
|
||||
}
|
||||
if(read == true){
|
||||
entrada.close();
|
||||
}
|
||||
write = read = false;
|
||||
nomeArquivo = "";
|
||||
charsetArquivo = "ISO-8859-1";
|
||||
}
|
||||
|
||||
public static long length(){
|
||||
long resp = -1;
|
||||
if(read != write){
|
||||
File file = new File(nomeArquivo);
|
||||
resp = file.length();
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static void print(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void print(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(int x){
|
||||
if(write == true){
|
||||
saida.format( "%d\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(double x){
|
||||
if(write == true){
|
||||
saida.format( "%f\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(String x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(boolean x){
|
||||
if(write == true){
|
||||
saida.format( "%s\n", ((x) ? "true" : "false"));
|
||||
}
|
||||
}
|
||||
|
||||
public static void println(char x){
|
||||
if(write == true){
|
||||
saida.format( "%c\n", x);
|
||||
}
|
||||
}
|
||||
|
||||
public static int readInt(){
|
||||
int resp = -1;
|
||||
try{
|
||||
resp = entrada.nextInt();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static char readChar(){
|
||||
char resp = ' ';
|
||||
try{
|
||||
resp = (char)entrada.nextByte();
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static double readDouble(){
|
||||
double resp = -1;
|
||||
try{
|
||||
resp = Double.parseDouble(readString().replace(",","."));
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readString(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.next();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static boolean readBoolean(){
|
||||
boolean resp = false;
|
||||
try{
|
||||
resp = (entrada.next().equals("true")) ? true : false;
|
||||
} catch (Exception e) {}
|
||||
return resp;
|
||||
}
|
||||
|
||||
public static String readLine(){
|
||||
String resp = "";
|
||||
try{
|
||||
resp = entrada.nextLine();
|
||||
} catch (Exception e) { System.out.println(e.getMessage()); }
|
||||
return resp;
|
||||
}
|
||||
|
||||
|
||||
public static boolean hasNext(){
|
||||
return entrada.hasNext();
|
||||
}
|
||||
|
||||
public static String readAll(){
|
||||
String resp = "";
|
||||
while(hasNext()){
|
||||
resp += (readLine() + "\n");
|
||||
}
|
||||
return resp;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,258 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q15 - Ordenação PARCIAL por Seleção em Java
|
||||
* @description Player class implemented with parcial selection sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Imports
|
||||
import java.util.Scanner;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.util.ArrayList;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public class Player {
|
||||
|
||||
// Global variables
|
||||
public static final String FILE_PATH = "/tmp/players.csv";
|
||||
public static ArrayList<Player> allPlayers = new ArrayList<Player>();
|
||||
|
||||
// -------------------------- //
|
||||
|
||||
// Attributes
|
||||
private int id;
|
||||
private String name;
|
||||
private int height;
|
||||
private int weight;
|
||||
private String college;
|
||||
private int yearOfBirth;
|
||||
private String birthCity;
|
||||
private String birthState;
|
||||
|
||||
// Empty constructor
|
||||
public Player() {
|
||||
|
||||
this.id = 0;
|
||||
this.name = "";
|
||||
this.height = 0;
|
||||
this.weight = 0;
|
||||
this.college = "";
|
||||
this.yearOfBirth = 0;
|
||||
this.birthCity = "";
|
||||
this.birthState = "";
|
||||
}
|
||||
|
||||
// Constructor
|
||||
public Player(int id, String name, int height, int weight, String college, int yearOfBirth, String birthCity, String birthState) {
|
||||
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.height = height;
|
||||
this.weight = weight;
|
||||
this.college = college;
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
this.birthCity = birthCity;
|
||||
this.birthState = birthState;
|
||||
}
|
||||
|
||||
// Gets
|
||||
public int getId() { return this.id; }
|
||||
public String getName() { return this.name; }
|
||||
public int getHeight() { return this.height; }
|
||||
public int getWeight() { return this.weight; }
|
||||
public String getCollege() { return this.college; }
|
||||
public int getYearOfBirth() { return this.yearOfBirth; }
|
||||
public String getBirthCity() { return this.birthCity; }
|
||||
public String getBirthState() { return this.birthState; }
|
||||
|
||||
// Sets
|
||||
public void setId(int id) { this.id = id; }
|
||||
public void setName(String name) { this.name = name; }
|
||||
public void setHeight(int height) { this.height = height; }
|
||||
public void setWeight(int weight) { this.weight = weight; }
|
||||
public void setCollege(String college) { this.college = college; }
|
||||
public void setYearOfBirth(int yearOfBirth) { this.yearOfBirth = yearOfBirth; }
|
||||
public void setBirthCity(String birthCity) { this.birthCity = birthCity; }
|
||||
public void setBirthState(String birthState) { this.birthState = birthState; }
|
||||
|
||||
// Clone
|
||||
public Player clone() { return new Player(this.id, this.name, this.height, this.weight, this.college, this.yearOfBirth, this.birthCity, this.birthState); }
|
||||
|
||||
// Print
|
||||
public void print() {
|
||||
|
||||
System.out.printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
this.id, this.name, this.height, this.weight, this.yearOfBirth, this.college, this.birthCity, this.birthState);
|
||||
}
|
||||
|
||||
// Read
|
||||
public void read(String line) {
|
||||
|
||||
// Split line by ","
|
||||
String[] splitted = line.split(",", -1);
|
||||
|
||||
// Fill empty attributes
|
||||
for(int i = 0; i < splitted.length; i++) {
|
||||
|
||||
if(splitted[i].equals("")) splitted[i] = "nao informado";
|
||||
}
|
||||
|
||||
// Set attributes
|
||||
this.id = Integer.parseInt(splitted[0]);
|
||||
this.name = splitted[1];
|
||||
this.height = Integer.parseInt(splitted[2]);
|
||||
this.weight = Integer.parseInt(splitted[3]);
|
||||
this.college = splitted[4];
|
||||
this.yearOfBirth = Integer.parseInt(splitted[5]);
|
||||
this.birthCity = splitted[6];
|
||||
this.birthState = splitted[7];
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Read all players function
|
||||
public static void startPlayers() {
|
||||
|
||||
// Initialize variables
|
||||
try {
|
||||
|
||||
FileInputStream fstream = new FileInputStream(FILE_PATH);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
|
||||
|
||||
// ---------------------- //
|
||||
|
||||
// Explode CSV file
|
||||
String line = br.readLine();
|
||||
|
||||
while((line = br.readLine()) != null) {
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read line
|
||||
player.read(line);
|
||||
|
||||
// Add player to array
|
||||
allPlayers.add(player);
|
||||
}
|
||||
|
||||
// Close CSV file
|
||||
fstream.close();
|
||||
}
|
||||
catch(IOException e) { e.printStackTrace(); }
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Search by id
|
||||
public static Player searchById(int id, ArrayList<Player> players) {
|
||||
|
||||
// Search for player
|
||||
for(int i = 0; i < players.size(); i++) {
|
||||
|
||||
if(players.get(i).getId() == id) return players.get(i);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
ArrayList<Player> mainPlayers = new ArrayList<Player>();
|
||||
|
||||
// Initialize scanner
|
||||
Scanner inScanner = new Scanner(System.in);
|
||||
|
||||
// Initialize player
|
||||
Player player = new Player();
|
||||
|
||||
// Read first line
|
||||
String line = inScanner.nextLine();
|
||||
|
||||
// While line is not "FIM"
|
||||
while(!line.equals("FIM")) {
|
||||
|
||||
// Get id
|
||||
int id = Integer.parseInt(line);
|
||||
|
||||
// Search for player
|
||||
player = searchById(id, allPlayers);
|
||||
|
||||
// Print player
|
||||
if(player != null) mainPlayers.add(player);
|
||||
|
||||
// Read line
|
||||
line = inScanner.nextLine();
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "name" using parcial selection sort
|
||||
|
||||
// Start benchmark
|
||||
long startTime = System.currentTimeMillis();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Parcial selection sort with k = 10
|
||||
int k = 10;
|
||||
|
||||
for(int i = 0; i < Math.min(k, mainPlayers.size() - 1); i++) {
|
||||
|
||||
// Initialize min
|
||||
int min = i;
|
||||
|
||||
// Find min among remaining unsorted elements
|
||||
for(int j = i + 1; j < mainPlayers.size(); j++) {
|
||||
|
||||
// Compare
|
||||
if(mainPlayers.get(j).getName().compareTo(mainPlayers.get(min).getName()) < 0) min = j;
|
||||
|
||||
comparisons++;
|
||||
}
|
||||
|
||||
// Swap
|
||||
Player temp = mainPlayers.get(i);
|
||||
mainPlayers.set(i, mainPlayers.get(min));
|
||||
mainPlayers.set(min, temp);
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
Arq.openWrite("753045_selecaoParcial.txt");
|
||||
Arq.print("753045\t" + (System.currentTimeMillis() - startTime) + "ms\t" + comparisons);
|
||||
Arq.close();
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < k; i++) mainPlayers.get(i).print();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// Close scanner
|
||||
inScanner.close();
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
[3376 ## A.J. Price ## 213 ## 124 ## 1989 ## nao informado ## nao informado ## nao informado]
|
||||
[3780 ## Aaron Harrison ## 198 ## 95 ## 1994 ## University of Kentucky ## San Antonio ## Texas]
|
||||
[2864 ## Adam Harrington ## 196 ## 90 ## 1980 ## Auburn University ## Bernardston ## Massachusetts]
|
||||
[2210 ## Adam Keefe ## 206 ## 104 ## 1970 ## Stanford University ## Irvine ## California]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2047 ## Alaa Abdelnaby ## 208 ## 108 ## 1968 ## Duke University ## Cairo ## Egypt]
|
||||
[2405 ## Alan Henderson ## 206 ## 106 ## 1972 ## Indiana University ## Indianapolis ## Indiana]
|
||||
[251 ## Alan Sawyer ## 196 ## 88 ## 1928 ## University of California - Los Angeles ## Long Beach ## California]
|
||||
[1150 ## Alex English* ## 201 ## 86 ## 1954 ## University of South Carolina ## Columbia ## South Carolina]
|
||||
[68 ## Alex Groza ## 201 ## 98 ## 1926 ## University of Kentucky ## Martins Ferry ## Ohio]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 1ms 191739
|
||||
Binary file not shown.
|
|
@ -1,450 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q16 - Ordenação PARCIAL por Inserção em C/Player.c
|
||||
* @description C file that implements the Player class with partial insertion sort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
#include <limits.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "yearOfBirth" using partial insertion sort, in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Partial insertion sort with k = 10
|
||||
int k = 10;
|
||||
|
||||
for(int i = 1; i < m; i++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
Player current = mainPlayers[i];
|
||||
int j = i - 1;
|
||||
|
||||
// Compare based on birth year
|
||||
while(j >= 0 && player_getBirthYear(&mainPlayers[j]) > player_getBirthYear(¤t)) {
|
||||
|
||||
mainPlayers[j + 1] = mainPlayers[j];
|
||||
j--;
|
||||
comparisons++;
|
||||
}
|
||||
|
||||
// If there's a tie in birth year, compare by name
|
||||
while(j >= 0 && player_getBirthYear(&mainPlayers[j]) == player_getBirthYear(¤t)) {
|
||||
|
||||
comparisons += 2;
|
||||
|
||||
if(strcmp(player_getName(&mainPlayers[j]), player_getName(¤t)) > 0) {
|
||||
|
||||
mainPlayers[j + 1] = mainPlayers[j];
|
||||
j--;
|
||||
}
|
||||
else break;
|
||||
}
|
||||
|
||||
mainPlayers[j + 1] = current;
|
||||
|
||||
// Check if we need to maintain only the top k elements
|
||||
if(i >= k) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
for(int l = k; l < i; l++) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
player_setBirthYear(&mainPlayers[l], INT_MAX); // Set birth year to a high value for elements outside the top k
|
||||
}
|
||||
|
||||
for(int l = k - 1; l >= 0; l--) {
|
||||
|
||||
comparisons += 4;
|
||||
|
||||
if(player_getBirthYear(&mainPlayers[l]) > player_getBirthYear(&mainPlayers[l + 1]) ||
|
||||
(player_getBirthYear(&mainPlayers[l]) == player_getBirthYear(&mainPlayers[l + 1]) &&
|
||||
strcmp(player_getName(&mainPlayers[l]), player_getName(&mainPlayers[l + 1])) > 0)) {
|
||||
|
||||
Player temp = mainPlayers[l];
|
||||
mainPlayers[l] = mainPlayers[l + 1];
|
||||
mainPlayers[l + 1] = temp;
|
||||
}
|
||||
else break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_insercaoParcial.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < k; i++) player_print(&mainPlayers[i]);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
[683 ## Matt Guokas ## 190 ## 88 ## 1915 ## Saint Joseph's University ## nao informado ## nao informado]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[3420 ## Armon Johnson ## 196 ## 107 ## 1920 ## Bemidji State University ## Gonvick ## Minnesota]
|
||||
[39 ## Bob Davies* ## 185 ## 79 ## 1920 ## Seton Hall University ## Harrisburg ## Pennsylvania]
|
||||
[89 ## Tony Jaros ## 190 ## 83 ## 1920 ## University of Minnesota ## Minneapolis ## Minnesota]
|
||||
[150 ## Don Otten ## 208 ## 108 ## 1921 ## Bowling Green State University ## Bellefontaine ## Ohio]
|
||||
[54 ## Joe Fulks* ## 196 ## 86 ## 1921 ## Murray State University ## Birmingham ## Kentucky]
|
||||
[141 ## Johnny Norlander ## 190 ## 81 ## 1921 ## Hamline University ## Virginia ## Minnesota]
|
||||
[213 ## Whitey Von ## 193 ## 92 ## 1921 ## nao informado ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 1ms 26261
|
||||
Binary file not shown.
|
|
@ -1,449 +0,0 @@
|
|||
/**
|
||||
* @path TP02Q17 - Heapsort PARCIAL em C/Player.c
|
||||
* @description C file that implements the Player class with partial heapsort
|
||||
* @author Pedro Lopes - github.com/httpspedroh
|
||||
* @version 1.0
|
||||
* @update 2023-09-27
|
||||
*/
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Includes
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
#include <time.h>
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Constants
|
||||
#define MAX_PLAYERS 4000
|
||||
#define FILE_PATH "/tmp/players.csv"
|
||||
|
||||
#define MAX_NAME_SIZE 40
|
||||
#define MAX_COLLEGE_SIZE 60
|
||||
#define MAX_BIRTH_CITY_SIZE 40
|
||||
#define MAX_BIRTH_STATE_SIZE 40
|
||||
|
||||
#define MAX_LINE_SIZE 300
|
||||
#define MAX_ATTRIBUTE_SIZE 100
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Structs
|
||||
typedef struct Player {
|
||||
int id;
|
||||
char *name;
|
||||
int height;
|
||||
int weight;
|
||||
int birthYear;
|
||||
char *birthCity;
|
||||
char *birthState;
|
||||
char *college;
|
||||
} Player;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Global variables
|
||||
Player allPlayers[MAX_PLAYERS];
|
||||
int n = 0;
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Functions
|
||||
bool isEnd(char* line) { return line[0] == 'F' && line[1] == 'I' && line[2] == 'M'; }
|
||||
|
||||
void substring(char *string, char *stringStart, int length) {
|
||||
|
||||
strncpy(string, stringStart, length);
|
||||
string[length] = '\0';
|
||||
}
|
||||
|
||||
void proccess_attribute(char *attribute, char **substringStart, char **substringEnd, bool isFirstAttribute) {
|
||||
|
||||
// Skip first comma
|
||||
if(!isFirstAttribute) {
|
||||
|
||||
if(*substringEnd != NULL) *substringStart = *substringEnd + 1;
|
||||
else *substringStart = *substringEnd;
|
||||
}
|
||||
|
||||
// Get next comma
|
||||
*substringEnd = strchr(*substringStart, ',');
|
||||
|
||||
// Get substring
|
||||
if(*substringEnd) substring(attribute, *substringStart, *substringEnd - *substringStart);
|
||||
else strcpy(attribute, *substringStart);
|
||||
|
||||
// Set default value if attribute is empty
|
||||
if(strcmp(attribute, "") == 0 || attribute[0] == '\n' || attribute[0] == '\r' || attribute[0] == '\0') strcpy(attribute, "nao informado");
|
||||
|
||||
// Clean \n from the end of the string
|
||||
if(attribute[strlen(attribute) - 1] == '\n') attribute[strlen(attribute) - 1] = '\0';
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods signatures
|
||||
|
||||
// Class
|
||||
Player player_newBlank();
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college);
|
||||
Player *player_clone(Player *player);
|
||||
void player_print(Player *player);
|
||||
Player player_read(char *line);
|
||||
Player *player_searchById(int id);
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player);
|
||||
char *player_getName(Player *player);
|
||||
int player_getHeight(Player *player);
|
||||
int player_getWeight(Player *player);
|
||||
char *player_getCollege(Player *player);
|
||||
int player_getBirthYear(Player *player);
|
||||
char *player_getBirthCity(Player *player);
|
||||
char *player_getBirthState(Player *player);
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id);
|
||||
void player_setName(Player *player, char *name);
|
||||
void player_setHeight(Player *player, int height);
|
||||
void player_setWeight(Player *player, int weight);
|
||||
void player_setCollege(Player *player, char *college);
|
||||
void player_setBirthYear(Player *player, int birthYear);
|
||||
void player_setBirthCity(Player *player, char *birthCity);
|
||||
void player_setBirthState(Player *player, char *birthState);
|
||||
|
||||
// General
|
||||
void startPlayers();
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Methods implementations
|
||||
|
||||
// Class
|
||||
Player player_newBlank() {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = -1;
|
||||
player.height = -1;
|
||||
player.weight = -1;
|
||||
player.birthYear = -1;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, "");
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, "");
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, "");
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, "");
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player player_new(int id, char *name, int height, int weight, int birthYear, char *birthCity, char *birthState, char *college) {
|
||||
|
||||
Player player;
|
||||
|
||||
player.id = id;
|
||||
player.height = height;
|
||||
player.weight = weight;
|
||||
player.birthYear = birthYear;
|
||||
|
||||
player.name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(player.name, name);
|
||||
|
||||
player.birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(player.birthCity, birthCity);
|
||||
|
||||
player.birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(player.birthState, birthState);
|
||||
|
||||
player.college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(player.college, college);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_clone(Player *player) {
|
||||
|
||||
Player *clone = (Player *) malloc(sizeof(Player));
|
||||
|
||||
clone -> id = player -> id;
|
||||
clone -> height = player -> height;
|
||||
clone -> weight = player -> weight;
|
||||
|
||||
clone -> name = (char *) calloc(MAX_NAME_SIZE, sizeof(char));
|
||||
strcpy(clone -> name, player -> name);
|
||||
|
||||
clone -> birthCity = (char *) calloc(MAX_BIRTH_CITY_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthCity, player -> birthCity);
|
||||
|
||||
clone -> birthState = (char *) calloc(MAX_BIRTH_STATE_SIZE, sizeof(char));
|
||||
strcpy(clone -> birthState, player -> birthState);
|
||||
|
||||
clone -> college = (char *) calloc(MAX_COLLEGE_SIZE, sizeof(char));
|
||||
strcpy(clone -> college, player -> college);
|
||||
|
||||
return clone;
|
||||
}
|
||||
|
||||
void player_print(Player *player) {
|
||||
|
||||
printf("[%d ## %s ## %d ## %d ## %d ## %s ## %s ## %s]\n",
|
||||
player -> id,
|
||||
player -> name,
|
||||
player -> height,
|
||||
player -> weight,
|
||||
player -> birthYear,
|
||||
player -> college,
|
||||
player -> birthCity,
|
||||
player -> birthState
|
||||
);
|
||||
}
|
||||
|
||||
Player player_read(char *line) {
|
||||
|
||||
Player player = player_newBlank();
|
||||
|
||||
char *substringStart = line;
|
||||
char *substringEnd = NULL;
|
||||
char attribute[MAX_ATTRIBUTE_SIZE];
|
||||
|
||||
// Get id
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, true);
|
||||
player_setId(&player, atoi(attribute));
|
||||
|
||||
// Get name
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setName(&player, attribute);
|
||||
|
||||
// Get height
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setHeight(&player, atoi(attribute));
|
||||
|
||||
// Get weight
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setWeight(&player, atoi(attribute));
|
||||
|
||||
// Get college
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setCollege(&player, attribute);
|
||||
|
||||
// Get birth year
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthYear(&player, atoi(attribute));
|
||||
|
||||
// Get birth city
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthCity(&player, attribute);
|
||||
|
||||
// Get birth state
|
||||
proccess_attribute(attribute, &substringStart, &substringEnd, false);
|
||||
player_setBirthState(&player, attribute);
|
||||
|
||||
return player;
|
||||
}
|
||||
|
||||
Player *player_searchById(int id) {
|
||||
|
||||
for(int i = 0; i < n; i++) {
|
||||
|
||||
if(player_getId(&allPlayers[i]) == id) return &allPlayers[i];
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Gets
|
||||
int player_getId(Player *player) { return player -> id; }
|
||||
char *player_getName(Player *player) { return player -> name; }
|
||||
int player_getHeight(Player *player) { return player -> height; }
|
||||
int player_getWeight(Player *player) { return player -> weight; }
|
||||
char *player_getCollege(Player *player) { return player -> college; }
|
||||
int player_getBirthYear(Player *player) { return player -> birthYear; }
|
||||
char *player_getBirthCity(Player *player) { return player -> birthCity; }
|
||||
char *player_getBirthState(Player *player) { return player -> birthState; }
|
||||
|
||||
// Sets
|
||||
void player_setId(Player *player, int id) { player -> id = id; }
|
||||
void player_setName(Player *player, char *name) { strcpy(player -> name, name); }
|
||||
void player_setHeight(Player *player, int height) { player -> height = height; }
|
||||
void player_setWeight(Player *player, int weight) { player -> weight = weight; }
|
||||
void player_setBirthYear(Player *player, int birthYear) { player -> birthYear = birthYear; }
|
||||
void player_setBirthCity(Player *player, char *birthCity) { strcpy(player -> birthCity, birthCity); }
|
||||
void player_setBirthState(Player *player, char *birthState) { strcpy(player -> birthState, birthState); }
|
||||
void player_setCollege(Player *player, char *college) { strcpy(player -> college, college); }
|
||||
|
||||
// General
|
||||
void startPlayers() {
|
||||
|
||||
// Open file
|
||||
FILE *fp;
|
||||
char *line = NULL;
|
||||
size_t len = 0;
|
||||
ssize_t read;
|
||||
|
||||
fp = fopen(FILE_PATH, "r");
|
||||
|
||||
if(fp == NULL) {
|
||||
|
||||
perror("x Error opening file");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
// Skip first line
|
||||
getline(&line, &len, fp);
|
||||
|
||||
// Read all lines
|
||||
while((read = getline(&line, &len, fp)) != -1) {
|
||||
|
||||
// Read player from line
|
||||
Player player = player_read(line);
|
||||
|
||||
allPlayers[n++] = player;
|
||||
|
||||
if(n >= MAX_PLAYERS) {
|
||||
|
||||
perror("x Max players reached");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
}
|
||||
|
||||
// Close file and free memory
|
||||
fclose(fp);
|
||||
|
||||
if(line) free(line);
|
||||
}
|
||||
|
||||
// Heapify function
|
||||
void heapify(Player *players, int n, int i, int *comparisons) {
|
||||
|
||||
int largest = i;
|
||||
int l = 2 * i + 1;
|
||||
int r = 2 * i + 2;
|
||||
|
||||
if(l < n) {
|
||||
|
||||
// Compare height of players
|
||||
int comparison = player_getHeight(&players[l]) - player_getHeight(&players[largest]);
|
||||
|
||||
// In draw case, compare names
|
||||
if(comparison == 0) comparison = strcmp(player_getName(&players[l]), player_getName(&players[largest]));
|
||||
if(comparison > 0) largest = l;
|
||||
|
||||
(*comparisons) += 2;
|
||||
}
|
||||
|
||||
if(r < n) {
|
||||
|
||||
// Compare height of players
|
||||
int comparison = player_getHeight(&players[r]) - player_getHeight(&players[largest]);
|
||||
|
||||
// In draw case, compare names
|
||||
if(comparison == 0) comparison = strcmp(player_getName(&players[r]), player_getName(&players[largest]));
|
||||
if(comparison > 0) largest = r;
|
||||
|
||||
(*comparisons) += 2;
|
||||
}
|
||||
|
||||
if(largest != i) {
|
||||
|
||||
Player aux = players[i];
|
||||
players[i] = players[largest];
|
||||
players[largest] = aux;
|
||||
heapify(players, n, largest, comparisons);
|
||||
}
|
||||
|
||||
(*comparisons) += 3;
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------------------------------- //
|
||||
|
||||
// Main
|
||||
int main() {
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #1 - Start - Read all players in CSV file
|
||||
startPlayers();
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #2 - Read input and print players from pub.in id entries and add to mainPlayers array
|
||||
|
||||
// Initialize mainPlayers array
|
||||
Player mainPlayers[MAX_PLAYERS];
|
||||
int m = 0;
|
||||
|
||||
char in[5];
|
||||
scanf(" %[^\n]s", in);
|
||||
|
||||
while(true) {
|
||||
|
||||
if(isEnd(in)) break;
|
||||
else {
|
||||
|
||||
int id = atoi(in);
|
||||
|
||||
Player *player = player_searchById(id);
|
||||
|
||||
if(player) mainPlayers[m++] = *player;
|
||||
|
||||
// ------------------------- //
|
||||
|
||||
scanf(" %[^\n]s", in);
|
||||
}
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------- //
|
||||
|
||||
// #3 - Order mainPlayers array by key "height" using insertion sort, in draw case, order by key "name"
|
||||
|
||||
// Start benchmark
|
||||
clock_t startTime = clock();
|
||||
int comparisons = 0;
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Heapsort with k = 10
|
||||
int k = 10;
|
||||
|
||||
for(int i = m / 2 - 1; i >= 0; i--) {
|
||||
|
||||
comparisons++;
|
||||
heapify(mainPlayers, m, i, &comparisons);
|
||||
}
|
||||
|
||||
for(int i = m - 1; i >= 0; i--) {
|
||||
|
||||
comparisons++;
|
||||
|
||||
Player aux = mainPlayers[0];
|
||||
mainPlayers[0] = mainPlayers[i];
|
||||
mainPlayers[i] = aux;
|
||||
|
||||
heapify(mainPlayers, i, 0, &comparisons);
|
||||
}
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Save benchmark in file
|
||||
FILE *fp = fopen("753045_heapsortParcial.txt", "w");
|
||||
fprintf(fp, "753045\t%.0fms\t%d", (double)(clock() - startTime) / CLOCKS_PER_SEC * 1000.0, comparisons);
|
||||
fclose(fp);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
// Print mainPlayers array
|
||||
for(int i = 0; i < k; i++) player_print(&mainPlayers[i]);
|
||||
|
||||
// ----------------- //
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
|
|
@ -1,465 +0,0 @@
|
|||
10
|
||||
1022
|
||||
1026
|
||||
104
|
||||
1046
|
||||
1086
|
||||
1103
|
||||
1118
|
||||
1122
|
||||
1144
|
||||
1145
|
||||
1146
|
||||
1150
|
||||
1152
|
||||
1160
|
||||
1165
|
||||
1169
|
||||
1171
|
||||
1173
|
||||
1183
|
||||
1188
|
||||
1201
|
||||
1208
|
||||
1212
|
||||
122
|
||||
1220
|
||||
1227
|
||||
1231
|
||||
1232
|
||||
1235
|
||||
1242
|
||||
1248
|
||||
1249
|
||||
1252
|
||||
1253
|
||||
1259
|
||||
1280
|
||||
1292
|
||||
1303
|
||||
1320
|
||||
1334
|
||||
1336
|
||||
1350
|
||||
1358
|
||||
1367
|
||||
1389
|
||||
1401
|
||||
141
|
||||
1415
|
||||
1417
|
||||
1435
|
||||
144
|
||||
1442
|
||||
145
|
||||
146
|
||||
1461
|
||||
1464
|
||||
1465
|
||||
1466
|
||||
1472
|
||||
1473
|
||||
15
|
||||
150
|
||||
1501
|
||||
1508
|
||||
1525
|
||||
154
|
||||
1541
|
||||
1545
|
||||
1549
|
||||
1555
|
||||
1558
|
||||
1559
|
||||
1568
|
||||
1585
|
||||
1587
|
||||
1597
|
||||
1613
|
||||
1618
|
||||
1630
|
||||
1631
|
||||
1650
|
||||
1656
|
||||
1672
|
||||
1675
|
||||
1680
|
||||
1686
|
||||
1693
|
||||
1702
|
||||
1704
|
||||
1718
|
||||
1730
|
||||
1733
|
||||
1739
|
||||
1740
|
||||
1743
|
||||
1744
|
||||
1752
|
||||
1768
|
||||
1772
|
||||
1785
|
||||
1798
|
||||
1805
|
||||
1807
|
||||
1810
|
||||
1829
|
||||
183
|
||||
1833
|
||||
1835
|
||||
1839
|
||||
1841
|
||||
1842
|
||||
1853
|
||||
1870
|
||||
1884
|
||||
1887
|
||||
1914
|
||||
1923
|
||||
1939
|
||||
1940
|
||||
1950
|
||||
1951
|
||||
1958
|
||||
1959
|
||||
1973
|
||||
1975
|
||||
1985
|
||||
1987
|
||||
1988
|
||||
1992
|
||||
1995
|
||||
2011
|
||||
2019
|
||||
2020
|
||||
2023
|
||||
2024
|
||||
2025
|
||||
204
|
||||
2040
|
||||
2046
|
||||
2047
|
||||
2052
|
||||
2056
|
||||
2067
|
||||
2069
|
||||
2075
|
||||
208
|
||||
2087
|
||||
2088
|
||||
2092
|
||||
2107
|
||||
211
|
||||
2117
|
||||
2124
|
||||
2126
|
||||
2127
|
||||
213
|
||||
2130
|
||||
2132
|
||||
2137
|
||||
2182
|
||||
2198
|
||||
220
|
||||
2203
|
||||
2204
|
||||
2210
|
||||
2215
|
||||
2216
|
||||
2227
|
||||
2246
|
||||
2261
|
||||
2275
|
||||
2297
|
||||
2312
|
||||
2317
|
||||
2323
|
||||
2326
|
||||
2327
|
||||
233
|
||||
2360
|
||||
2361
|
||||
2383
|
||||
2398
|
||||
2402
|
||||
2405
|
||||
2406
|
||||
2408
|
||||
2429
|
||||
2433
|
||||
2448
|
||||
246
|
||||
2462
|
||||
2470
|
||||
2472
|
||||
2478
|
||||
2482
|
||||
251
|
||||
2514
|
||||
2522
|
||||
2532
|
||||
2534
|
||||
2535
|
||||
2540
|
||||
2546
|
||||
255
|
||||
2559
|
||||
2564
|
||||
2569
|
||||
2576
|
||||
2582
|
||||
2586
|
||||
2589
|
||||
2596
|
||||
2600
|
||||
2603
|
||||
2617
|
||||
2619
|
||||
2621
|
||||
2623
|
||||
2628
|
||||
2631
|
||||
2636
|
||||
264
|
||||
2643
|
||||
2653
|
||||
2654
|
||||
2655
|
||||
2663
|
||||
267
|
||||
2675
|
||||
2682
|
||||
2683
|
||||
2690
|
||||
2698
|
||||
2701
|
||||
2712
|
||||
2738
|
||||
2751
|
||||
2752
|
||||
2789
|
||||
2792
|
||||
280
|
||||
2809
|
||||
2813
|
||||
282
|
||||
2827
|
||||
2843
|
||||
2863
|
||||
2864
|
||||
2865
|
||||
2866
|
||||
287
|
||||
2870
|
||||
2880
|
||||
2888
|
||||
289
|
||||
2904
|
||||
291
|
||||
2914
|
||||
2916
|
||||
2921
|
||||
2930
|
||||
2933
|
||||
295
|
||||
2960
|
||||
2963
|
||||
298
|
||||
299
|
||||
2997
|
||||
3
|
||||
3000
|
||||
3010
|
||||
3029
|
||||
3045
|
||||
3060
|
||||
3067
|
||||
3078
|
||||
3079
|
||||
3084
|
||||
309
|
||||
3096
|
||||
3109
|
||||
3127
|
||||
3128
|
||||
313
|
||||
3138
|
||||
3139
|
||||
3149
|
||||
3157
|
||||
3189
|
||||
3208
|
||||
3227
|
||||
3229
|
||||
3241
|
||||
3261
|
||||
3277
|
||||
3284
|
||||
3289
|
||||
3299
|
||||
33
|
||||
3308
|
||||
3313
|
||||
3315
|
||||
3325
|
||||
3330
|
||||
3331
|
||||
3346
|
||||
3355
|
||||
3358
|
||||
3368
|
||||
3370
|
||||
3374
|
||||
3376
|
||||
3387
|
||||
3394
|
||||
3397
|
||||
34
|
||||
3403
|
||||
3420
|
||||
3427
|
||||
3439
|
||||
345
|
||||
3474
|
||||
3475
|
||||
3477
|
||||
3494
|
||||
3501
|
||||
3516
|
||||
3520
|
||||
3525
|
||||
3548
|
||||
3559
|
||||
3582
|
||||
3586
|
||||
3588
|
||||
3595
|
||||
3620
|
||||
3628
|
||||
3629
|
||||
3638
|
||||
3639
|
||||
3643
|
||||
3644
|
||||
3659
|
||||
3664
|
||||
3667
|
||||
3671
|
||||
3682
|
||||
3698
|
||||
370
|
||||
3719
|
||||
3728
|
||||
3729
|
||||
3734
|
||||
3744
|
||||
3745
|
||||
3746
|
||||
3757
|
||||
3778
|
||||
3780
|
||||
3783
|
||||
3787
|
||||
3789
|
||||
3795
|
||||
3814
|
||||
3821
|
||||
3826
|
||||
3829
|
||||
3834
|
||||
3838
|
||||
3844
|
||||
3850
|
||||
3851
|
||||
3862
|
||||
3877
|
||||
3896
|
||||
39
|
||||
395
|
||||
403
|
||||
419
|
||||
430
|
||||
439
|
||||
444
|
||||
46
|
||||
462
|
||||
467
|
||||
471
|
||||
479
|
||||
483
|
||||
496
|
||||
511
|
||||
539
|
||||
54
|
||||
545
|
||||
55
|
||||
558
|
||||
563
|
||||
566
|
||||
575
|
||||
587
|
||||
588
|
||||
590
|
||||
593
|
||||
599
|
||||
60
|
||||
602
|
||||
605
|
||||
610
|
||||
618
|
||||
630
|
||||
634
|
||||
640
|
||||
65
|
||||
651
|
||||
665
|
||||
672
|
||||
68
|
||||
683
|
||||
686
|
||||
7
|
||||
713
|
||||
717
|
||||
726
|
||||
738
|
||||
749
|
||||
760
|
||||
769
|
||||
772
|
||||
775
|
||||
787
|
||||
788
|
||||
79
|
||||
797
|
||||
805
|
||||
806
|
||||
808
|
||||
826
|
||||
831
|
||||
833
|
||||
845
|
||||
868
|
||||
874
|
||||
88
|
||||
886
|
||||
889
|
||||
89
|
||||
892
|
||||
90
|
||||
902
|
||||
910
|
||||
919
|
||||
921
|
||||
936
|
||||
94
|
||||
947
|
||||
953
|
||||
954
|
||||
966
|
||||
969
|
||||
975
|
||||
980
|
||||
982
|
||||
984
|
||||
FIM
|
||||
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
[1242 ## Charlie Criss ## 173 ## 74 ## 1948 ## New Mexico State University ## Valhalla ## New York]
|
||||
[220 ## D.C. Wilcutt ## 175 ## 70 ## 1926 ## nao informado ## nao informado ## nao informado]
|
||||
[298 ## Al Masino ## 178 ## 78 ## 1928 ## Canisius College ## nao informado ## nao informado]
|
||||
[2540 ## Chris Garner ## 178 ## 70 ## 1975 ## University of Memphis ## Memphis ## Tennessee]
|
||||
[539 ## Jimmy Darrow ## 178 ## 77 ## 1937 ## Bowling Green State University ## Akron ## Ohio]
|
||||
[280 ## Zeke Sinicola ## 178 ## 74 ## 1929 ## Niagara University ## nao informado ## nao informado]
|
||||
[55 ## Bill Gabor ## 180 ## 77 ## 1922 ## Syracuse University ## nao informado ## nao informado]
|
||||
[1841 ## Billy Donovan ## 180 ## 77 ## 1965 ## Providence College ## Rockville Centre ## New York]
|
||||
[90 ## Buddy Jeannette* ## 180 ## 79 ## 1917 ## Washington & Jefferson College ## New Kensington ## Pennsylvania]
|
||||
[60 ## Dee Gibson ## 180 ## 79 ## 1923 ## Western Kentucky University ## nao informado ## nao informado]
|
||||
|
|
@ -1 +0,0 @@
|
|||
753045 31ms 106491
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue