diff --git a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/Player.java b/tps/gabaritos/tp02/TP02Q01 - Classe em Java/Player.java deleted file mode 100644 index 4b638ae..0000000 --- a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pedro.out b/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pedro.out deleted file mode 100644 index 3b0b6fc..0000000 --- a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pub.in b/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pub.in deleted file mode 100644 index 5030a68..0000000 --- a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pub.in +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pub.out b/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pub.out deleted file mode 100644 index 3b0b6fc..0000000 --- a/tps/gabaritos/tp02/TP02Q01 - Classe em Java/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q02 - Classe em C/Player b/tps/gabaritos/tp02/TP02Q02 - Classe em C/Player deleted file mode 100644 index a6885ba..0000000 Binary files a/tps/gabaritos/tp02/TP02Q02 - Classe em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q02 - Classe em C/Player.c b/tps/gabaritos/tp02/TP02Q02 - Classe em C/Player.c deleted file mode 100644 index 530464f..0000000 --- a/tps/gabaritos/tp02/TP02Q02 - Classe em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q02 - Classe em C/pedro.out b/tps/gabaritos/tp02/TP02Q02 - Classe em C/pedro.out deleted file mode 100644 index 3b0b6fc..0000000 --- a/tps/gabaritos/tp02/TP02Q02 - Classe em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q02 - Classe em C/pub.in b/tps/gabaritos/tp02/TP02Q02 - Classe em C/pub.in deleted file mode 100644 index 5030a68..0000000 --- a/tps/gabaritos/tp02/TP02Q02 - Classe em C/pub.in +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q02 - Classe em C/pub.out b/tps/gabaritos/tp02/TP02Q02 - Classe em C/pub.out deleted file mode 100644 index 3b0b6fc..0000000 --- a/tps/gabaritos/tp02/TP02Q02 - Classe em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/753045_sequencial.txt b/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/753045_sequencial.txt deleted file mode 100644 index fd144ec..0000000 --- a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/753045_sequencial.txt +++ /dev/null @@ -1 +0,0 @@ -753045 60ms 3724 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/Arq.java b/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/Player.java b/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/Player.java deleted file mode 100644 index 7cb0e58..0000000 --- a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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 mainPlayers = new ArrayList(); - - // 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pedro.out b/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pedro.out deleted file mode 100644 index 477c895..0000000 --- a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pedro.out +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pub.in b/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pub.in deleted file mode 100644 index 8bbb092..0000000 --- a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pub.in +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pub.out b/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pub.out deleted file mode 100644 index 477c895..0000000 --- a/tps/gabaritos/tp02/TP02Q03 - Pesquisa Sequencial em Java/pub.out +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/753045_binaria.txt b/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/753045_binaria.txt deleted file mode 100644 index 5ef1740..0000000 --- a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/753045_binaria.txt +++ /dev/null @@ -1 +0,0 @@ -753045 0ms 2228 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/Player b/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/Player deleted file mode 100644 index 31797b7..0000000 Binary files a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/Player.c b/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/Player.c deleted file mode 100644 index d193174..0000000 --- a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pedro.out b/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pedro.out deleted file mode 100644 index 477c895..0000000 --- a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pedro.out +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pub.in b/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pub.in deleted file mode 100644 index 8bbb092..0000000 --- a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pub.in +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pub.out b/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pub.out deleted file mode 100644 index 477c895..0000000 --- a/tps/gabaritos/tp02/TP02Q04 - Pesquisa Binária em C/pub.out +++ /dev/null @@ -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 diff --git a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/753045_selecao.txt b/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/753045_selecao.txt deleted file mode 100644 index 3f383da..0000000 --- a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/753045_selecao.txt +++ /dev/null @@ -1 +0,0 @@ -753045 24ms 106953 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/Arq.java b/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/Player.java b/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/Player.java deleted file mode 100644 index d2834f9..0000000 --- a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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 mainPlayers = new ArrayList(); - - // 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pedro.out b/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pedro.out deleted file mode 100644 index a17c74a..0000000 --- a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pub.in b/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pub.out b/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pub.out deleted file mode 100644 index a17c74a..0000000 --- a/tps/gabaritos/tp02/TP02Q05 - Ordenação por Seleção em Java/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/753045_selecaoRecursiva.txt b/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/753045_selecaoRecursiva.txt deleted file mode 100644 index 01ffebc..0000000 --- a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/753045_selecaoRecursiva.txt +++ /dev/null @@ -1 +0,0 @@ -753045 3ms 106953 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/Player b/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/Player deleted file mode 100644 index 0f0bc5f..0000000 Binary files a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/Player.c b/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/Player.c deleted file mode 100644 index 95b6bf7..0000000 --- a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pedro.out b/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pedro.out deleted file mode 100644 index a17c74a..0000000 --- a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pub.in b/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pub.out b/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pub.out deleted file mode 100644 index a17c74a..0000000 --- a/tps/gabaritos/tp02/TP02Q06 - Ordenação por Seleção Recursiva em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/753045_insercao.txt b/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/753045_insercao.txt deleted file mode 100644 index d049417..0000000 --- a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/753045_insercao.txt +++ /dev/null @@ -1 +0,0 @@ -753045 16ms 41751 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/Arq.java b/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/Player.java b/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/Player.java deleted file mode 100644 index a0cf9ea..0000000 --- a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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 mainPlayers = new ArrayList(); - - // 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pedro.out b/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pedro.out deleted file mode 100644 index f10305e..0000000 --- a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pub.in b/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pub.out b/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pub.out deleted file mode 100644 index f10305e..0000000 --- a/tps/gabaritos/tp02/TP02Q07 - Ordenação por Inserção em Java/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/753045_shellsort.txt b/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/753045_shellsort.txt deleted file mode 100644 index 1f81ed2..0000000 --- a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/753045_shellsort.txt +++ /dev/null @@ -1 +0,0 @@ -753045 1ms 4010 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/Player b/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/Player deleted file mode 100644 index f64ff09..0000000 Binary files a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/Player.c b/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/Player.c deleted file mode 100644 index 4e09a6d..0000000 --- a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pedro.out b/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pedro.out deleted file mode 100644 index bd7262c..0000000 --- a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pub.in b/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pub.in deleted file mode 100644 index 8980f70..0000000 --- a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pub.out b/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pub.out deleted file mode 100644 index bd7262c..0000000 --- a/tps/gabaritos/tp02/TP02Q08 - Shellsort em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/753045_heapsort.txt b/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/753045_heapsort.txt deleted file mode 100644 index f31c9eb..0000000 --- a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/753045_heapsort.txt +++ /dev/null @@ -1 +0,0 @@ -753045 20ms 0 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/Arq.java b/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/Player.java b/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/Player.java deleted file mode 100644 index e16af81..0000000 --- a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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 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 mainPlayers = new ArrayList(); - - // 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pedro.out b/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pedro.out deleted file mode 100644 index 1f049da..0000000 --- a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pub.in b/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pub.out b/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pub.out deleted file mode 100644 index 1f049da..0000000 --- a/tps/gabaritos/tp02/TP02Q09 - Heapsort em Java/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/753045_quicksort.txt b/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/753045_quicksort.txt deleted file mode 100644 index 2fc4a0d..0000000 --- a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/753045_quicksort.txt +++ /dev/null @@ -1 +0,0 @@ -753045 3ms 146796 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/Player b/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/Player deleted file mode 100644 index 6cc84c2..0000000 Binary files a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/Player.c b/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/Player.c deleted file mode 100644 index a74c8ba..0000000 --- a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pedro.out b/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pedro.out deleted file mode 100644 index 1bc8bb5..0000000 --- a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pub.in b/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pub.out b/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pub.out deleted file mode 100644 index 1bc8bb5..0000000 --- a/tps/gabaritos/tp02/TP02Q10 - Quicksort em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/753045_countingsort.txt b/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/753045_countingsort.txt deleted file mode 100644 index 30770e2..0000000 --- a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/753045_countingsort.txt +++ /dev/null @@ -1 +0,0 @@ -753045 16ms 8822 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/Arq.java b/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/Player.java b/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/Player.java deleted file mode 100644 index 72c1c86..0000000 --- a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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 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 mainPlayers = new ArrayList(); - - // 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pedro.out b/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pedro.out deleted file mode 100644 index 1f049da..0000000 --- a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pub.in b/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pub.out b/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pub.out deleted file mode 100644 index 1f049da..0000000 --- a/tps/gabaritos/tp02/TP02Q11 - Counting Sort em Java/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/753045_bolha.txt b/tps/gabaritos/tp02/TP02Q12 - Bolha em C/753045_bolha.txt deleted file mode 100644 index a716f5c..0000000 --- a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/753045_bolha.txt +++ /dev/null @@ -1 +0,0 @@ -753045 2ms 158824 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/Player b/tps/gabaritos/tp02/TP02Q12 - Bolha em C/Player deleted file mode 100644 index 910395c..0000000 Binary files a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/Player.c b/tps/gabaritos/tp02/TP02Q12 - Bolha em C/Player.c deleted file mode 100644 index 3a40b29..0000000 --- a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pedro.out b/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pedro.out deleted file mode 100644 index f10305e..0000000 --- a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pub.in b/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pub.out b/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pub.out deleted file mode 100644 index f10305e..0000000 --- a/tps/gabaritos/tp02/TP02Q12 - Bolha em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/753045_mergesort.txt b/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/753045_mergesort.txt deleted file mode 100644 index 6710fff..0000000 --- a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/753045_mergesort.txt +++ /dev/null @@ -1 +0,0 @@ -753045 14ms 3487 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/Arq.java b/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/Player.java b/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/Player.java deleted file mode 100644 index 77b39c2..0000000 --- a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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 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 arr, int l, int mid, int r) { - - int comparisons = 0; - int n1 = mid - l + 1; - int n2 = r - mid; - - ArrayList leftArr = new ArrayList(); - ArrayList rightArr = new ArrayList(); - - 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 mainPlayers = new ArrayList(); - - // 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pedro.out b/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pedro.out deleted file mode 100644 index dab5833..0000000 --- a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pub.in b/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pub.out b/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pub.out deleted file mode 100644 index dab5833..0000000 --- a/tps/gabaritos/tp02/TP02Q13 - Mergesort em Java/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/753045_radixsort.txt b/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/753045_radixsort.txt deleted file mode 100644 index 3ac420b..0000000 --- a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/753045_radixsort.txt +++ /dev/null @@ -1 +0,0 @@ -753045 0ms 6397 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/Player b/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/Player deleted file mode 100644 index 895c335..0000000 Binary files a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/Player.c b/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/Player.c deleted file mode 100644 index 8c4b465..0000000 --- a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pedro.out b/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pedro.out deleted file mode 100644 index e51739f..0000000 --- a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pub.in b/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pub.out b/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pub.out deleted file mode 100644 index e51739f..0000000 --- a/tps/gabaritos/tp02/TP02Q14 - Radixsort em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/753045_selecaoParcial.txt b/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/753045_selecaoParcial.txt deleted file mode 100644 index fd2befd..0000000 --- a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/753045_selecaoParcial.txt +++ /dev/null @@ -1 +0,0 @@ -753045 13ms 4575 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/Arq.java b/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/Player.java b/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/Player.java deleted file mode 100644 index 58ccafe..0000000 --- a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/Player.java +++ /dev/null @@ -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 allPlayers = new ArrayList(); - - // -------------------------- // - - // 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 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 mainPlayers = new ArrayList(); - - // 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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pedro.out b/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pedro.out deleted file mode 100644 index b7ac979..0000000 --- a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pub.in b/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pub.out b/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pub.out deleted file mode 100644 index b7ac979..0000000 --- a/tps/gabaritos/tp02/TP02Q15 - Ordenação PARCIAL por Seleção em Java/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/753045_insercaoParcial.txt b/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/753045_insercaoParcial.txt deleted file mode 100644 index 29a9ab8..0000000 --- a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/753045_insercaoParcial.txt +++ /dev/null @@ -1 +0,0 @@ -753045 1ms 191739 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/Player b/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/Player deleted file mode 100644 index b1964ed..0000000 Binary files a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/Player.c b/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/Player.c deleted file mode 100644 index 9bedd3a..0000000 --- a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/Player.c +++ /dev/null @@ -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 -#include -#include -#include -#include -#include - -// ---------------------------------------------------------------------------------------------------- // - -// 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; -} \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pedro.out b/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pedro.out deleted file mode 100644 index 0c625fa..0000000 --- a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pub.in b/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pub.out b/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pub.out deleted file mode 100644 index 0c625fa..0000000 --- a/tps/gabaritos/tp02/TP02Q16 - Ordenação PARCIAL por Inserção em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/753045_heapsortParcial.txt b/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/753045_heapsortParcial.txt deleted file mode 100644 index 4b61fc3..0000000 --- a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/753045_heapsortParcial.txt +++ /dev/null @@ -1 +0,0 @@ -753045 1ms 26261 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/Player b/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/Player deleted file mode 100644 index f1b1058..0000000 Binary files a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/Player and /dev/null differ diff --git a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/Player.c b/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/Player.c deleted file mode 100644 index 954b865..0000000 --- a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/Player.c +++ /dev/null @@ -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 - #include - #include - #include - #include - - // ---------------------------------------------------------------------------------------------------- // - - // 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; - } \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pedro.out b/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pedro.out deleted file mode 100644 index 61ffdfd..0000000 --- a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pedro.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pub.in b/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pub.out b/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pub.out deleted file mode 100644 index 61ffdfd..0000000 --- a/tps/gabaritos/tp02/TP02Q17 - Heapsort PARCIAL em C/pub.out +++ /dev/null @@ -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] diff --git a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/753045_quicksortParcial.txt b/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/753045_quicksortParcial.txt deleted file mode 100644 index 502ac9f..0000000 --- a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/753045_quicksortParcial.txt +++ /dev/null @@ -1 +0,0 @@ -753045 31ms 106491 \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/Arq.java b/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/Arq.java deleted file mode 100644 index 9a632d1..0000000 --- a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/Arq.java +++ /dev/null @@ -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; - } -} diff --git a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/Player.java b/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/Player.java deleted file mode 100644 index 17c3351..0000000 --- a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/Player.java +++ /dev/null @@ -1,275 +0,0 @@ -/** - * @path TP02Q18 - Quicksort PARCIAL em Java - * @description Player class implemented with parcial quicksort - * @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 allPlayers = new ArrayList(); - public static int comparisons = 0; - - // -------------------------- // - - // 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 birthState - int birthStateComparison = this.birthState.compareTo(other.birthState); - - if(birthStateComparison != 0) return birthStateComparison; - 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 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 mainPlayers = new ArrayList(); - - // 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 "birthState", in draw case, order by key "name" - - // Start benchmark - long startTime = System.currentTimeMillis(); - int comparisons = 0; - - // ----------------- // - - // Parcial quicksort with k = 10 - int k = 10; - - for(int i = 0; i < mainPlayers.size() - 1; i++) { - - for(int j = i + 1; j < mainPlayers.size() - 1; j++) { - - comparisons++; - - if(mainPlayers.get(i).compareTo(mainPlayers.get(j)) > 0) { - - Player temp = mainPlayers.get(i); - mainPlayers.set(i, mainPlayers.get(j)); - mainPlayers.set(j, temp); - } - else if(mainPlayers.get(i).compareTo(mainPlayers.get(j)) == 0) { - - comparisons++; - - if(mainPlayers.get(i).getName().compareTo(mainPlayers.get(j).getName()) > 0) { - - Player temp = mainPlayers.get(i); - mainPlayers.set(i, mainPlayers.get(j)); - mainPlayers.set(j, temp); - } - } - } - } - - // ----------------- // - - // Save benchmark in file - Arq.openWrite("753045_quicksortParcial.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(); - } -} - -// ---------------------------------------------------------------------------------------------------- // \ No newline at end of file diff --git a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pedro.out b/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pedro.out deleted file mode 100644 index d12ceab..0000000 --- a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pedro.out +++ /dev/null @@ -1,10 +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] diff --git a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pub.in b/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pub.in deleted file mode 100644 index dbaf6f9..0000000 --- a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pub.in +++ /dev/null @@ -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 - diff --git a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pub.out b/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pub.out deleted file mode 100644 index d12ceab..0000000 --- a/tps/gabaritos/tp02/TP02Q18 - Quicksort PARCIAL em Java/pub.out +++ /dev/null @@ -1,10 +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] diff --git a/tps/gabaritos/tp02/players.csv b/tps/gabaritos/tp02/players.csv deleted file mode 100644 index 77dd302..0000000 --- a/tps/gabaritos/tp02/players.csv +++ /dev/null @@ -1,3923 +0,0 @@ -id,Player,height,weight,collage,born,birth_city,birth_state -0,Curly Armstrong,180,77,Indiana University,1918,, -1,Cliff Barker,188,83,University of Kentucky,1921,Yorktown,Indiana -2,Leo Barnhorst,193,86,University of Notre Dame,1924,, -3,Ed Bartels,196,88,North Carolina State University,1925,, -4,Ralph Beard,178,79,University of Kentucky,1927,Hardinsburg,Kentucky -5,Gene Berce,180,79,Marquette University,1926,, -6,Charlie Black,196,90,University of Kansas,1921,Arco,Idaho -7,Nelson Bobb,183,77,Temple University,1924,Philadelphia,Pennsylvania -8,Jake Bornheimer,196,90,Muhlenberg College,1927,New Brunswick,New Jersey -9,Vince Boryla,196,95,University of Denver,1927,East Chicago,Indiana -10,Don Boven,193,95,Western Michigan University,1925,Kalamazoo,Michigan -11,Harry Boykoff,208,102,St. John's University,1922,Brooklyn,New York -12,Joe Bradley,190,79,Oklahoma State University,1928,Washington,Oklahoma -13,Bob Brannum,196,97,Michigan State University,1925,, -14,Carl Braun,196,81,Colgate University,1927,Brooklyn,New York -15,Frankie Brian,185,81,Louisiana State University,1923,Zachary,Louisiana -16,Price Brookfield,193,83,West Texas A&M University,1920,Floydada,Texas -17,Bob Brown,193,92,Miami University,1923,Versailles,Ohio -18,Jim Browne,208,106,,1930,Midlothian,Illinois -19,Walt Budko,196,99,Columbia University,1925,Kearney,New Jersey -20,Jack Burmaster,190,86,University of Illinois at Urbana-Champaign,1926,, -21,Tommy Byrnes,190,79,Seton Hall University,1923,Teaneck,New Jersey -22,Bill Calhoun,190,81,City College of San Francisco,1927,San Francisco,California -23,Don Carlson,183,77,University of Minnesota,1919,Minneapolis,Minnesota -24,Bob Carpenter,196,90,East Texas State University,1917,, -25,Jake Carter,193,88,East Texas State University,1924,, -26,Al Cervi*,180,77,,1917,Buffalo,New York -27,John Chaney,190,83,Louisiana State University,1920,, -28,Leroy Chollet,188,86,Canisius College,1925,New Orleans,Louisiana -29,Bill Closs,196,88,Rice University,1922,Edge,Texas -30,Paul Cloyd,188,81,University of Wisconsin,1920,, -31,Jack Coleman,201,88,University of Louisville,1924,Burgin,Kentucky -32,Bobby Cook,178,70,University of Wisconsin,1923,, -33,Ray Corley,183,81,Georgetown University,1928,, -34,Jack Cotton,201,90,University of Wyoming,1924,Miles City,Montana -35,Dillard Crocker,193,92,Western Michigan University,1925,Coffee County,Tennessee -36,Chink Crossin,185,74,University of Pennsylvania,1923,Luzerne,Pennsylvania -37,Fran Curran,183,79,University of Notre Dame,1922,Sterling,Illinois -38,Jimmy Darden,185,77,University of Denver,1922,, -39,Bob Davies*,185,79,Seton Hall University,1920,Harrisburg,Pennsylvania -40,Hook Dillon,190,81,University of North Carolina,1924,Savannah,Georgia -41,Earl Dodd,196,79,Truman State University,1924,, -42,Joe Dolhon,183,79,New York University,1927,, -43,Bob Doll,196,88,University of Colorado,1919,Steamboat Springs,Colorado -44,Harry Donovan,188,81,Muhlenberg College,1926,Union City,New Jersey -45,Andy Duncan,198,88,College of William & Mary,1922,, -46,Dike Eddleman,190,85,University of Illinois at Urbana-Champaign,1922,Centralia,Illinois -47,Gene Englund,196,92,University of Wisconsin,1917,Kenosha,Wisconsin -48,Bob Evans,188,79,Butler University,1925,Indianapolis,Indiana -49,Johnny Ezersky,190,79,University of Rhode Island,1922,New York,New York -50,Bob Feerick,190,86,Santa Clara University,1920,San Francisco,California -51,George Feigenbaum,185,83,University of Kentucky,1929,, -52,Arnie Ferrin,188,81,University of Utah,1925,Salt Lake City,Utah -53,Jerry Fleishman,188,86,New York University,1922,Brooklyn,New York -54,Joe Fulks*,196,86,Murray State University,1921,Birmingham,Kentucky -55,Bill Gabor,180,77,Syracuse University,1922,, -56,Elmer Gainer,198,88,DePaul University,1918,Chicago,Illinois -57,Harry Gallatin*,198,95,Truman State University,1927,Roxana,Illinois -58,Vern Gardner,196,90,University of Utah,1925,Afton,Wyoming -59,Frank Gates,183,72,Sam Houston State University,1920,, -60,Dee Gibson,180,79,Western Kentucky University,1923,, -61,Hoot Gibson,196,89,Creighton University,1921,, -62,Chuck Gilmur,193,102,University of Washington,1922,, -63,Normie Glick,201,86,Loyola Marymount University,1927,, -64,Paul Gordon,190,83,University of Notre Dame,1927,, -65,Joe Graboski,201,88,,1930,, -66,Bud Grant,190,88,University of Minnesota,1927,Superior,Wisconsin -67,Don Grate,188,83,Ohio State University,1923,Greenfield,Ohio -68,Alex Groza,201,98,University of Kentucky,1926,Martins Ferry,Ohio -69,Al Guokas,196,90,Saint Joseph's University,1925,, -70,Robert Hahn,208,108,North Carolina State University,1925,, -71,Chick Halbert,206,102,West Texas A&M University,1919,Albany,Texas -72,Bruce Hale,185,77,Santa Clara University,1918,Medford,Oregon -73,Dale Hamilton,183,81,Franklin College,1919,, -74,Alex Hannum*,201,95,University of Southern California,1923,Los Angeles,California -75,John Hargis,188,81,University of Texas at Austin,1920,Nacogdoches,Texas -76,Bob Harris,201,88,Oklahoma State University,1927,Linden,Tennessee -77,Bob Harrison,201,88,Oklahoma State University,1927,Linden,Tennessee -78,Billy Hassett,180,81,University of Notre Dame,1921,, -79,Marshall Hawkins,190,92,University of Tennessee,1924,Huntington,West Virginia -80,Bill Henry,206,97,Rice University,1924,Dallas,Texas -81,Bill Herman,190,77,Mount Union College,1924,, -82,Kleggie Hermsen,206,102,University of Minnesota,1923,Hill City,Minnesota -83,Sonny Hertzberg,178,79,City College of New York,1922,Brooklyn,New York -84,Paul Hoffman,188,88,Purdue University,1925,, -85,Joe Holland,193,83,University of Kentucky,1925,, -86,Red Holzman*,178,79,City College of New York,1920,Brooklyn,New York -87,Gene James,193,81,Marshall University,1925,Ironton,Ohio -88,Howie Janotta,190,83,Seton Hall University,1924,, -89,Tony Jaros,190,83,University of Minnesota,1920,Minneapolis,Minnesota -90,Buddy Jeannette*,180,79,Washington & Jefferson College,1917,New Kensington,Pennsylvania -91,Arnie Johnson,196,107,Bemidji State University,1920,Gonvick,Minnesota -92,Ralph Johnson,180,77,Huntington University,1921,, -93,Wah Wah,180,77,,1921,, -94,Noble Jorgensen,206,103,University of Iowa,1925,, -95,George Kaftan,190,86,College of the Holy Cross,1928,New York,New York -96,Leo Katkaveck,183,83,North Carolina State University,1923,, -97,Jack Kerris,198,97,Loyola University of Chicago,1925,, -98,Bob Kinney,198,97,Rice University,1920,Fort Scott,Kansas -99,Walt Kirk,190,78,University of Illinois at Urbana-Champaign,1924,Mount Vernon,Illinois -100,Leo Klier,188,77,University of Notre Dame,1923,Washington,Indiana -101,Duane Klueh,190,79,Indiana State University,1926,Bottineau,North Dakota -102,Lee Knorek,201,97,University of Detroit Mercy,1921,Warsaw,Poland -103,Milo Komenich,201,96,University of Wyoming,1920,, -104,Leo Kubiak,180,72,Bowling Green State University,1927,, -105,Frank Kudelka,188,87,Saint Mary's College of California,1925,, -106,Walt Lautenbach,188,83,University of Wisconsin,1922,, -107,Tony Lavelli,190,83,Yale University,1926,Somerville,Massachusetts -108,Ed Leede,190,83,Dartmouth College,1927,, -109,Andrew Levane,188,86,St. John's University,1920,Brooklyn,New York -110,Freddie Lewis,188,88,Eastern Kentucky University,1921,Brooklyn,New York -111,Ron Livingstone,208,99,University of Wyoming,1925,, -112,John Logan,188,79,Indiana University,1921,Richmond,Indiana -113,Ray Lumpp,185,80,New York University,1923,Brooklyn,New York -114,Ed Macauley*,203,83,Saint Louis University,1928,St. Louis,Missouri -115,Johnny Macknowski,183,81,Seton Hall University,1923,, -116,John Mahnken,203,99,Georgetown University,1922,New Jersey,New Jersey -117,John Mandic,193,92,Oregon State University,1919,Los Angeles,California -118,Slater Martin*,178,77,University of Texas at Austin,1925,El Mina,Texas -119,Ariel Maughan,193,86,Utah State University,1923,Salt Lake City,Utah -120,Matt Mazza,190,95,Michigan State University,1923,Niagara Falls,New York -121,Mike McCarron,180,81,Seton Hall University,1922,, -122,Dick McGuire*,183,81,St. John's University,1926,Huntington,New York -123,Bones McKinney,198,83,University of North Carolina,1919,Lowlands,North Carolina -124,Mal McMullen,196,95,Xavier University,1927,, -125,Dick Mehen,196,88,University of Tennessee,1922,, -126,Ken Menke,183,76,University of Illinois at Urbana-Champaign,1922,, -127,Stan Miasek,196,95,,1924,, -128,Ed Mikan,203,104,DePaul University,1925,, -129,George Mikan*,208,111,DePaul University,1924,Joliet,Illinois -130,Vern Mikkelsen*,201,104,Hamline University,1928,Fresno,California -131,Al Miksis,201,95,Western Illinois University,1928,, -132,Murray Mitchell,201,95,Sam Houston State University,1923,, -133,Leo Mogus,193,86,Youngstown State University,1921,Ohio, -134,Max Morris,188,88,Northwestern University,1925,, -135,Joe Mullaney,183,74,College of the Holy Cross,1925,Long Island,New York -136,Jerry Nagel,183,86,Loyola University of Chicago,1928,Chicago,Illinois -137,Jack Nichols,201,100,University of Washington,1926,, -138,Richie Niemiera,185,74,University of Notre Dame,1921,Chicago,Illinois -139,Paul Noel,193,83,University of Kentucky,1924,Midway,Kentucky -140,Jim Nolan,203,95,Georgia Institute of Technology,1927,Macon,Georgia -141,Johnny Norlander,190,81,Hamline University,1921,Virginia,Minnesota -142,George Nostrand,203,88,University of Wyoming,1924,Uniondale,New York -143,Mike Novak,206,99,Loyola University of Chicago,1915,Chicago,Illinois -144,Dermie O'Connell,183,78,College of the Holy Cross,1928,, -145,Andy O'Donnell,185,81,Loyola College in Maryland,1925,, -146,Dick O'Keefe,188,83,Santa Clara University,1923,San Francisco,California -147,John Oldham,190,79,Western Kentucky University,1923,Beaver Dam,Kentucky -148,Gene Ollrich,180,72,Drake University,1922,Whiting,Indiana -149,Johnny Orr,190,88,Beloit College,1927,Yale,Kansas -150,Don Otten,208,108,Bowling Green State University,1921,Bellefontaine,Ohio -151,Mac Otten,201,99,Bowling Green State University,1925,Bellefontaine,Ohio -152,Red Owens,190,83,Baylor University,1925,, -153,Easy Parham,190,90,Texas Wesleyan University,1921,Fort Worth,Texas -154,Jack Parkinson,183,78,University of Kentucky,1924,Yorktown,Indiana -155,Charlie Parsley,188,79,Western Kentucky University,1925,, -156,Stan Patrick,188,83,University of Illinois at Urbana-Champaign,1922,, -157,Johnny Payak,193,78,Bowling Green State University,1926,, -158,Warren Perkins,190,86,Tulane University,1922,New Orleans,Louisiana -159,Ed Peterson,206,99,Cornell University,1924,, -160,Jack Phelan,196,88,DePaul University,1925,Chicago,Illinois -161,Andy Phillip*,188,88,University of Illinois at Urbana-Champaign,1922,Granite City,Illinois -162,Jim Pollard*,193,83,Stanford University,1922,Oakland,California -163,John Pritchard,206,99,Drake University,1927,, -164,Les Pugh,201,86,Ohio State University,1923,, -165,Don Putman,201,86,,1923,, -166,George Ratkovicz,198,99,,1922,Chicago,Illinois -167,Don Ray,196,86,Western Kentucky University,1921,Mt. Juliet,Tennessee -168,Chick Reiser,180,74,New York University,1914,, -169,Arnie Risen*,206,90,Ohio State University,1924,Williamstown,Kentucky -170,Tex Ritter,188,83,Eastern Kentucky University,1924,Richmond,Kentucky -171,Bill Roberts,206,95,University of Wyoming,1925,Fort Wayne,Indiana -172,Red Rocha,206,83,Oregon State University,1923,Hilo,Hawaii -173,Kenny Rollins,183,76,University of Kentucky,1923,Charlestown,Missouri -174,Bob Royer,178,70,Indiana State University,1927,, -175,Jerry Rullo,178,74,Temple University,1923,Philadelphia,Pennsylvania -176,Ed Sadowski,196,108,Seton Hall University,1917,Johnstown,Pennsylvania -177,Kenny Sailors,178,79,University of Wyoming,1921,Bushnell,Nebraska -178,Pep Saul,188,83,Seton Hall University,1924,, -179,Herm Schaefer,183,79,Indiana University,1918,Fort Wayne,Indiana -180,Marv Schatzman,196,90,Saint Louis University,1927,, -181,Fred Schaus,196,92,West Virginia University,1925,Newark,Ohio -182,Dolph Schayes*,203,99,New York University,1928,New York,New York -183,Milt Schoon,201,104,Valparaiso University,1922,, -184,Howie Schultz,198,90,Hamline University,1922,St. Paul,Minnesota -185,Dick Schulz,188,87,University of Wisconsin,1917,Racine,Wisconsin -186,Fred Scolari,178,81,University of San Francisco,1922,San Francisco,California -187,Wayne See,190,86,Northern Arizona University,1923,Clemenceau,Arizona -188,Glen Selbo,190,88,University of Wisconsin,1926,, -189,Rollie Seltz,178,74,Hamline University,1924,McIntosh,Minnesota -190,Jim Seminoff,188,86,University of Southern California,1922,Los Angelse,California -191,George Senesky,188,81,Saint Joseph's University,1922,Mahanoy City,Pennsylvania -192,Paul Seymour,185,81,University of Toledo,1928,Toledo,Ohio -193,Carl Shaeffer,190,83,University of Alabama,1924,Delphi,Indiana -194,Howie Shannon,188,79,Kansas State University,1923,Manhattan,Kansas -195,Charley Shipp,185,90,Catholic University of America,1913,, -196,Connie Simmons,203,100,,1925,Newark,New Jersey -197,Belus Smawley,185,88,Appalachian State University,1918,Golden Valley,North Carolina -198,Jack Smiley,190,86,University of Illinois at Urbana-Champaign,1922,Sandwich,Illinois -199,Chips Sobek,183,81,University of Notre Dame,1920,, -200,Odie Spears,196,92,Western Kentucky University,1925,, -201,Art Spector,193,90,Villanova University,1920,Philadelphia,Pennsylvania -202,Ed Stanczak,185,83,,1921,, -203,Gene Stump,188,83,DePaul University,1923,, -204,Mike Todorovich,196,99,University of Wyoming,1923,, -205,Jack Toomay,198,97,University of the Pacific,1922,Ontario,California -206,Bob Tough,183,83,St. John's University,1920,New York,New York -207,Blackie Towery,193,95,Western Kentucky University,1920,Caldwell,Kentucky -208,Dick Triptow,183,77,DePaul University,1922,Chicago,Illinois -209,Butch Van,183,77,,1922,, -210,Gene Vance,190,88,University of Illinois at Urbana-Champaign,1923,, -211,Ernie Vandeweghe,190,88,Colgate University,1928,Montreal,Canada -212,Floyd Volker,193,92,University of Wyoming,1921,Casper,Wyoming -213,Whitey Von,193,92,,1921,, -214,Clint Wager,198,95,Saint Mary's University of Minnesota,1920,Winona,Minnesota -215,Danny Wagner,183,77,University of Texas at Austin,1922,, -216,Brady Walker,198,92,Brigham Young University,1921,Provo,Utah -217,Paul Walther,188,72,University of Tennessee,1927,Covington,Kentucky -218,Bobby Wanzer*,183,77,Seton Hall University,1921,Brooklyn,New York -219,Murray Wier,175,70,University of Iowa,1926,Grand View,Iowa -220,D.C. Wilcutt,175,70,,1926,, -221,Bob Wood,175,70,Northern Illinois University,1921,, -222,Max Zaslofsky,188,77,St. John's University,1925,Brooklyn,New York -222,Max Zaslofsky,188,77,St. John's University,1925,Brooklyn,New York -224,Paul Arizin*,193,86,Villanova University,1928,Philadelphia,Pennsylvania -225,Ed Beach,190,90,West Virginia University,1929,, -226,Leon Blevins,188,72,University of Arizona,1926,, -227,Ike Borsavage,203,99,Temple University,1924,Plymouth,Pennsylvania -228,Art Burris,196,99,University of Tennessee,1924,, -229,Gerry Calabrese,185,79,St. John's University,1925,Hoboken,New Jersey -230,Cal Christensen,196,95,University of Toledo,1927,, -231,Nat Clifton*,198,99,Xavier University of Louisiana,1922,Little Rock,Arkansas -232,Chuck Cooper,196,95,Duquesne University,1926,, -233,Bob Cousy*,185,79,College of the Holy Cross,1928,New York,New York -234,Hank DeZonie,198,97,Clark Atlanta University,1922,, -235,Bob Donham,188,86,Ohio State University,1926,, -236,Ray Ellefson,203,104,West Texas A&M University,1922,Brookings,South Dakota -237,Larry Foust,206,97,La Salle University,1928,Painesville,Ohio -238,Ed Gayda,193,95,Washington State University,1927,, -239,Joe Hutton,185,77,Hamline University,1928,, -240,Bob Lavoy,201,83,Western Kentucky University,1926,, -241,Earl Lloyd*,196,90,West Virginia State University,1928,, -242,Don Lofgran,196,90,University of San Francisco,1928,Oakland,California -243,Norm Mager,196,83,City College of New York,1926,, -244,Joe McNamee,198,95,University of San Francisco,1926,, -245,Chuck Mrazovich,196,83,Eastern Kentucky University,1924,, -246,Ken Murray,188,86,St. Bonaventure University,1928,, -247,Tommy O'Keefe,188,83,Georgetown University,1928,Jersey City,New Jersey -248,Kevin O'Shea,188,79,University of Notre Dame,1925,San Francisco,California -249,Don Rehfeldt,201,95,University of Wisconsin,1927,Chicago,Illinois -250,Jim Riffey,193,90,Tulane University,1923,, -251,Alan Sawyer,196,88,University of California - Los Angeles,1928,Long Beach,California -252,Herb Scherer,206,96,Long Island University,1928,, -253,Dick Schnittker,196,90,Ohio State University,1928,Kelleys Island,Ohio -254,Bill Sharman*,185,79,University of Southern California,1926,Abilene,Texas -255,Don Barksdale*,198,90,University of California- Los Angeles,1923,Oakland,California -256,Elmer Behnke,201,95,Bradley University,1929,Rockford,Illinois -257,Stan Brown,190,90,,1929,, -258,Ed Dahler,196,86,Duquesne University,1926,, -259,Nate DeLong,198,99,University of Wisconsin-River Falls,1926,, -260,Dick Dickey,185,79,North Carolina State University,1926,Grant County,Indiana -261,Jake Fendley,183,81,Northwestern University,1929,, -262,Jerry Fowler,203,104,University of Missouri,1927,, -263,Lew Hitch,203,90,Kansas State University,1929,Griggsville,Illinois -264,Mel Hutchins,198,90,Brigham Young University,1928,Sacramento,California -265,Neil Johnston*,203,95,Ohio State University,1929,Chillicothe,Ohio -266,Jack Kiley,185,77,Syracuse University,1929,, -267,George King,183,79,University of Charleston,1928,Charleston,West Virginia -268,John McConathy,196,88,Northwestern State University,1930,Sailes,Louisiana -269,Alfred McGuire*,188,81,St. John's University,1928,New York,New York -270,Dave Minor,188,83,University of California - Los Angeles,1922,Missouri, -271,Ralph O'Brien,175,72,Butler University,1928,Henshaw,Kentucky -272,Wally Osterkorn,196,97,University of Illinois at Urbana-Champaign,1928,, -273,Mel Payton,193,83,Tulane University,1926,, -274,John Pilch,190,83,University of Wyoming,1925,Sheridan,Wyoming -275,Ray Ragelis,193,92,Northwestern University,1928,, -276,Sam Ranzino,185,83,North Carolina State University,1927,Gary,Indiana -277,John Rennicke,188,83,Drake University,1929,, -278,Don Savage,190,92,LeMoyne College,1928,, -279,Chuck Share,211,106,Bowling Green State University,1927,, -280,Zeke Sinicola,178,74,Niagara University,1929,, -281,Whitey Skoog,180,81,University of Minnesota,1926,Duluth,Minnesota -282,Jim Slaughter,211,95,University of South Carolina,1928,, -283,Bill Tosheff,185,79,Indiana University,1926,, -284,Bob Wilson,193,83,West Virginia State University,1926,, -285,Jim Baechtold,193,92,Eastern Kentucky University,1927,McKeesport,Pennsylvania -286,Jim Brasco,185,77,New York University,1931,Brooklyn,New York -287,Dick Bunt,183,77,New York University,1930,Queens,New York -288,Gene Conley,203,102,Washington State University,1930,Muskogee,Oklahoma -289,Pete Darcey,201,98,Oklahoma State University,1930,, -290,Blaine Denning,188,79,Lawrence Technological University,1930,, -291,Danny Finn,185,83,St. John's University,1928,, -292,Dick Groat,180,81,Duke University,1930,Wilkinsburg,Pennsylvania -293,Don Hanrahan,201,90,Loyola University of Chicago,1929,, -294,Don Henriksen,201,102,University of California,1929,, -295,Jim Holstein,190,81,University of Cincinnati,1930,, -296,Bob Lochmueller,196,83,University of Louisville,1927,, -297,Mo Mahoney,188,92,Brown University,1927,, -298,Al Masino,178,78,Canisius College,1928,, -299,Jack McCloskey,188,86,University of Pennsylvania,1925,Mahanoy City,Pennsylvania -300,Bucky McConnell,178,77,Marshall University,1928,, -301,George McLeod,196,90,Texas Christian University,1931,, -302,Jack McMahon,185,83,St. John's University,1928,, -303,Monk Meineke,201,94,University of Dayton,1930,Dayton,Ohio -304,Eddie Miller,203,102,Syracuse University,1931,, -305,Bill Mlkvy,193,86,Temple University,1931,Palmerton,Pennsylvania -306,Jim Mooney,196,97,Villanova University,1930,, -307,Bob Naber,190,83,University of Louisville,1929,, -308,John O'Boyle,188,83,Colorado State University,1928,, -309,Mike O'Neill,190,95,University of California,1928,, -310,Claude Overton,188,88,East Central University,1927,, -311,Ralph Polson,201,90,Whitworth,1929,, -312,Bob Priddy,190,86,New Mexico State University,1930,, -313,Moe Radovich,183,72,University of Wyoming,1929,, -314,Sherwin Raiken,188,83,Villanova University,1928,, -315,Gene Rhodes,185,77,Western Kentucky University,1927,, -316,Dick Surhoff,193,95,Long Island University,1929,, -317,Mark Workman,206,97,West Virginia University,1930,Charleston,West Virginia -318,Zeke Zawoluk,201,97,St. John's University,1930,Brooklyn,New York -319,Don Ackerman,183,83,Long Island University,1930,New York,New York -320,Don Asmonga,188,83,Alliance College,1928,West Mifflin,Pennsylvania -321,Ernie Barrett,190,81,Kansas State University,1929,Pratt,Kansas -322,Ernie Beck,193,86,University of Pennsylvania,1931,Philadelphia,Pennsylvania -323,Irv Bemoras,190,83,University of Illinois at Urbana-Champaign,1930,, -324,Bill Bolger,196,92,Georgetown University,1931,, -325,Walt Davis,203,92,Texas A&M University,1931,Beaumont,Texas -326,Gene Dyker,198,102,DePaul University,1930,, -327,Ed Earle,190,86,Loyola University of Chicago,1927,, -328,Ray Felix,211,99,Long Island University,1930,New York,New York -329,Jim Fritsche,203,95,Hamline University,1931,, -330,Jack George,188,86,La Salle University,1928,Swissvale,Pennsylvania -331,Bato Govedarica,180,83,DePaul University,1928,, -332,Norm Grekin,196,81,La Salle University,1930,Philadelphia,Pennsylvania -333,Rollen Hans,188,95,Long Island University,1931,, -334,Bob Houbregs*,201,95,University of Washington,1932,Vancouver,Canada -335,Billy Kenville,188,84,St. Bonaventure University,1930,Elmhurst,New York -336,Dick Knostman,198,97,Kansas State University,1931,Wamego,Kansas -337,Clyde Lovellette*,206,106,University of Kansas,1929,Petersburg,Indiana -338,Jim Luisi,188,81,St. Francis College,1928,, -339,Jack Molinas,198,90,Columbia University,1931,New York,New York -340,Jim Neal,211,106,Wofford College,1930,, -341,Paul Nolen,211,106,Texas Tech University,1929,, -342,Bob Peterson,196,95,University of Oregon,1932,San Mateo,California -343,James Phelan,196,88,DePaul University,1925,Chicago,Illinois -344,Connie Rea,190,79,Centenary College of Louisiana,1935,, -345,Frank Reddout,196,88,Syracuse University,1935,, -346,Al Roges,193,88,Long Island University,1930,, -347,Ed Smith,198,81,Harvard University,1929,West Jefferson,Ohio -348,Joe Smyth,190,97,Niagara University,1929,, -349,Don Sunderlage,185,81,University of Illinois at Urbana-Champaign,1929,Roselle,Illinois -350,Norm Swanson,198,95,University of Detroit Mercy,1930,Chicago,Illinois -351,Hal Uplinger,193,83,Long Island University,1929,, -352,Isaac Walthour,180,73,,1930,New York City,New York -353,George Yardley*,196,86,Stanford University,1928,Hollywood,California -354,Don Anielak,201,86,Missouri State University,1930,, -355,Tom Brennan,190,88,Villanova University,1930,, -356,Bob Carney,190,77,Bradley University,1932,, -357,Fred Christ,193,95,Fordham University,1930,, -358,Bert Cook,190,83,Utah State University,1929,, -359,Larry Costello,185,84,Niagara University,1931,Minoa,New York -360,George Dempsey,188,86,King's College,1929,Philadelphia,Pennsylvania -361,Fred Diute,190,95,St. Bonaventure University,1929,, -362,Dick Farley,193,86,Indiana University,1932,, -363,Chuck Grigsby,196,86,University of Dayton,1928,Dayton,Ohio -364,Herm Hedderick,196,77,Canisius College,1930,Erie,Pennsylvania -365,Ed Kalafat,198,111,University of Minnesota,1932,, -366,Mike Kearns,188,80,Princeton University,1929,Trenton,New Jersey -367,Red Kerr,206,104,University of Illinois at Urbana-Champaign,1932,Chicago,Illinois -368,Dan King,198,99,Western Kentucky University,1931,, -369,Bob Knight,188,83,,1929,, -370,Ronnie MacGilvray,188,83,St. John's University,1930,, -371,Tom Marshall,193,97,Western Kentucky University,1931,, -372,Phil Martin,190,86,University of Toledo,1928,, -373,Ken McBride,190,86,University of Maryland Eastern Shore,1928,, -374,Carl McNulty,190,83,Purdue University,1930,, -375,Jackie Moore,196,81,La Salle University,1932,Philadelphia,Pennsylvania -376,Red Morrison,203,99,University of Idaho,1932,, -377,Boris Nachamkin,198,95,New York University,1933,, -378,Togo Palazzi,193,92,College of the Holy Cross,1932,Union City,New Jersey -379,Bob Pettit*,206,92,Louisiana State University,1932,Baton Rouge,Louisiana -380,Frank Ramsey*,190,86,University of Kentucky,1931,Corydon,Kentucky -381,Dick Rosenthal,196,92,University of Notre Dame,1930,, -382,Frank Selvy,190,81,Furman University,1932,Corbin,Kentucky -383,Gene Shue,188,77,University of Maryland,1931,Baltimore,Maryland -384,Art Spoelstra,206,99,Western Kentucky University,1932,, -385,Jim Tucker,201,83,Duquesne University,1932,Paris,Kentucky -386,Jack Turner,193,77,Western Kentucky University,1930,Bedford,Indiana -387,Bobby Watson,183,72,University of Kentucky,1930,Central City,Kentucky -388,Skippy Whitaker,185,81,University of Kentucky,1930,, -389,Jesse Arnelle,196,99,Pennsylvania State University,1933,New Rochelle,New York -390,Dick Atha,188,86,Indiana State University,1931,Otterbein,Indiana -391,Don Bielke,201,108,Valparaiso University,1931,, -392,Ed Conlin,196,90,Fordham University,1933,, -393,Red Davis,201,99,St. John's University,1932,, -394,Corky Devlin,196,88,George Washington University,1931,, -395,Walter Dukes,213,99,Seton Hall University,1930,Rochester,New York -396,Ron Feiereisel,190,83,DePaul University,1931,, -397,Al Ferrari,193,86,Michigan State University,1933,New York,New York -398,Ed Fleming,190,85,Niagara University,1933,, -399,Dick Garmaker,190,90,University of Minnesota,1932,Hibbing,Minnesota -400,Tom Gola*,198,92,La Salle University,1933,Philadelphia,Pennsylvania -401,Chris Harris,190,86,University of Dayton,1933,Southampton,United Kingdom -402,Dick Hemric,198,99,Wake Forest University,1933,Jonesville,North Carolina -403,Larry Hennessy,190,83,Villanova University,1929,, -404,Johnny Horan,203,86,University of Dayton,1932,, -405,Jim Loscutoff,196,99,University of Oregon,1930,San Francisco,California -406,Chuck Mencel,183,76,University of Minnesota,1933,Phillips,Wisconsin -407,Chuck Noble,193,86,University of Louisville,1931,, -408,Med Park,188,92,University of Missouri,1933,Britton,South Dakota -409,Richie Regan,188,81,Seton Hall University,1930,Newark,New Jersey -410,Dick Ricketts,201,97,Duquesne University,1933,Pottstown,Pennsylvania -411,Bob Santini,196,86,Iona College,1935,Bronx,New York -412,Bob Schafer,190,88,Villanova University,1935,, -413,Kenny Sears,206,89,Santa Clara University,1933,Watsonville,California -414,Jack Stephens,190,83,University of Notre Dame,1933,, -415,Maurice Stokes*,201,105,Saint Francis University,1933,Pittsburgh,Pennsylvania -416,Jack Twyman*,198,95,University of Cincinnati,1934,Pittsburgh,Pennsylvania -417,Bob Williams,198,104,Florida Agricultural and Mechanical University,1931,, -418,Forest Able,190,81,Western Kentucky University,1932,, -419,Bob Armstrong,203,99,Michigan State University,1933,Detroit,Michigan -420,John Barber,198,95,California State University - Los Angeles,1927,, -421,Gary Bergen,203,95,University of Utah,1932,Independence,Missouri -422,Al Bianchi,190,83,Bowling Green State University,1932,Long Island City,New York -423,Bob Burrow,201,103,University of Kentucky,1934,Malvern,Arkansas -424,Si Green,188,83,Duquesne University,1933,New York,New York -425,Richie Guerin*,193,88,Iona College,1932,New York,New York -426,Cliff Hagan*,193,95,University of Kentucky,1931,Owensboro,Kentucky -427,Tom Heinsohn*,201,98,College of the Holy Cross,1934,Union City,New Jersey -428,Joe Holup,198,97,George Washington University,1934,, -429,Bob Hopkins,203,92,Grambling State University,1934,Jonesboro,Louisiana -430,Phil Jordon,208,92,Whitworth,1933,Lakeport,California -431,Hal Lear,183,73,Temple University,1935,Philadelphia,Pennsylvania -432,Slick Leonard*,190,83,Indiana University,1932,Terre Haute,Indiana -433,Johnny McCarthy,185,83,Canisius College,1934,, -434,Willie Naulls,198,102,University of California - Los Angeles,1934,Dallas,Texas -435,Jim Paxson,198,90,University of Dayton,1932,Pennville,Indiana -436,Dave Piontek,198,104,Xavier University,1934,, -437,Jim Ray,185,81,University of Toledo,1934,, -438,Bill Russell*,208,97,University of San Francisco,1934,Monroe,Louisiana -439,Ron Shavlik,203,90,North Carolina State University,1933,Denver,Colorado -440,Ron Sobie,190,83,DePaul University,1934,Chicago,Illinois -441,Norm Stewart,196,92,University of Missouri,1935,Leonard,Missouri -442,Bill Thieben,201,97,Hofstra University,1935,, -443,Lou Tsioropoulos,196,86,University of Kentucky,1930,Lynn,Massachusetts -444,Doug Bolstorff,193,88,University of Minnesota,1931,, -445,George Brown,198,86,Wayne State University,1935,, -446,Dick Duckett,185,83,St. John's University,1933,, -447,Pat Dunn,188,77,Utah State University,1931,, -448,Bill Ebben,193,86,University of Detroit Mercy,1935,, -449,Bo Erias,190,99,Niagara University,1932,Astoria,New York -450,Larry Friend,193,83,University of California,1935,Chicago,Illinois -451,Hot Rod,193,83,,1935,, -452,McCoy Ingram,203,95,Jackson State University,1931,, -453,Sam Jones*,193,89,North Carolina Central University,1933,Wilmington,North Carolina -454,Jim Krebs,203,104,Southern Methodist University,1935,Webster Groves,Missouri -455,Brendan McCann,188,80,St. Bonaventure University,1935,Brooklyn,New York -456,Worthy Patterson,188,79,University of Connecticut,1931,New Haven,Connecticut -457,Jerry Paulson,188,83,Manhattan College,1935,, -458,Ray Radziszewski,196,95,Saint Joseph's University,1935,, -459,Lennie Rosenbluth,193,86,University of North Carolina,1933,New York,New York -460,Woody Sauldsberry,201,99,Texas Southern University,1934,Winnsboro,Louisiana -461,Guy Sparrow,198,98,University of Detroit Mercy,1932,Pontiac,Michigan -462,Charlie Tyra,203,104,University of Louisville,1935,Louisville,Kentucky -463,Jim Walsh,193,88,Stanford University,1930,San Francisco,California -464,Win Wilfong,188,83,University of Memphis,1933,, -465,Elgin Baylor*,196,102,Seattle University,1934,Washington,District of Columbia -466,Jerry Bird,198,95,University of Kentucky,1935,Corbin,Kentucky -467,Bucky Bockhorn,193,90,University of Dayton,1933,Campbell Hill,Illinois -468,Pete Brennan,198,92,University of North Carolina,1936,Brooklyn,New York -469,Barney Cable,201,79,Bradley University,1935,, -470,Archie Dees,203,92,Indiana University,1936,Ethel,Mississippi -471,Connie Dierking,206,100,University of Cincinnati,1936,Brooklyn,New York -472,Boo Ellis,196,83,Niagara University,1936,, -473,Wayne Embry*,203,108,Miami University,1937,Springfield,Ohio -474,Mike Farmer,201,95,University of San Francisco,1936,Oklahoma City,Oklahoma -475,Dave Gambee,198,97,Oregon State University,1937,Portland,Oregon -476,Hal Greer*,188,79,Marshall University,1936,Huntington,West Virginia -477,Steve Hamilton,198,86,Morehead State University,1935,Columbia,Kentucky -478,Vern Hatton,190,88,University of Kentucky,1936,Owingsville,Kentucky -479,Andy Johnson,196,97,University of Portland,1932,Los Angeles,California -480,K.C. Jones*,196,97,,1932,, -481,Tommy Kearns,180,83,University of North Carolina,1936,New York,New York -482,Shellie McMillon,196,92,Bradley University,1936,, -483,Jim Palmer,203,101,University of Dayton,1933,Keokee,Virginia -484,Jack Parr,206,99,Kansas State University,1936,Louisville,Kentucky -485,Hub Reed,206,97,Oklahoma City University,1936,Harrah,Oklahoma -486,Guy Rodgers*,183,83,Temple University,1935,Philadelphia,Pennsylvania -487,Phil Rollins,188,83,University of Louisville,1934,Wickliffe,Kentucky -488,Larry Staverman,201,92,Thomas More College,1936,, -489,Bennie Swain,203,99,Texas Southern University,1933,, -490,Gary Alcorn,206,102,California State University - Fresno,1936,, -491,Bob Anderegg,190,90,Michigan State University,1937,Monroe,Wisconsin -492,Dick Barnett,193,86,Tennessee State University,1936,Gary,Indiana -493,Whitey Bell,183,81,North Carolina State University,1932,Monticello,Kentucky -494,Wilt Chamberlain*,216,124,University of Kansas,1936,Philadelphia,Pennsylvania -495,Bob Ferry,203,104,Saint Louis University,1937,St. Louis,Missouri -496,Johnny Green,196,90,Michigan State University,1933,Dayton,Ohio -497,Gene Guarilia,196,99,George Washington University,1937,Duryea,Pennsylvania -498,Tom Hawkins,196,95,University of Notre Dame,1936,Chicago,Illinois -499,Bailey Howell*,201,95,Mississippi State University,1937,Middleton,Tennessee -500,Maury King,188,88,University of Kansas,1935,, -501,Rudy LaRusso,201,99,Dartmouth College,1937,Brooklyn,New York -502,Nick Mantis,190,86,Northwestern University,1935,, -503,Cal Ramsey,193,90,New York University,1937,Selma,Alabama -504,John Richter,206,102,North Carolina State University,1937,, -505,Joe Ruklick,206,99,Northwestern University,1938,Princeton,Illinois -506,Bobby Smith,193,86,West Virginia University,1937,, -507,Wayne Stevens,190,83,University of Cincinnati,1936,, -508,Tony Windis,185,72,University of Wyoming,1933,, -509,Al Attles,183,79,North Carolina Agricultural and Technical State University,1936,Newark,New Jersey -510,Bob Boozer,203,97,Kansas State University,1937,Omaha,Nebraska -511,Dave Budd,198,92,Wake Forest University,1938,Woodbury,New Jersey -512,Ralph Davis,193,81,University of Cincinnati,1938,Vanceburg,Kentucky -513,Swede Halbrook,221,106,Oregon State University,1933,, -514,Darrall Imhoff,208,99,University of California,1938,San Gabriel,California -515,Ron Johnson,203,97,University of Minnesota,1938,, -516,Howie Jolliff,203,97,,1938,, -517,Willie Jones,190,83,Northwestern University,1936,, -518,Pickles Kennedy,180,81,Temple University,1938,Philadelphia,Pennsylvania -519,Fred LaCour,196,95,University of San Francisco,1938,, -520,George Lee,193,90,University of Michigan,1936,, -521,Bob McNeill,185,77,Saint Joseph's University,1938,Philadelphia,Pennsylvania -522,Jackie Moreland,201,97,Louisiana Tech University,1938,Minden,Louisiana -523,Don Ohl,190,86,University of Illinois at Urbana-Champaign,1936,Murphysboro,Illinois -524,Joe Roberts,198,97,Ohio State University,1936,, -525,Oscar Robertson*,196,92,University of Cincinnati,1938,Charlotte,Tennessee -526,Tom Sanders*,198,95,New York University,1938,New York,New York -527,Jerry West*,188,79,West Virginia University,1938,Chelyan,West Virginia -528,Lenny Wilkens*,185,81,Providence College,1937,Brooklyn,New York -529,Stacey Arceneaux,193,95,Iowa State University,1936,, -530,Walt Bellamy*,211,102,Indiana University,1939,New Bern,North Carolina -531,George Blaney,185,79,College of the Holy Cross,1939,Jersey City,New Jersey -532,George Bon,185,79,,1939,, -533,Joe Buckhalter,201,95,Tennessee State University,1937,, -534,Cleveland Buckner,206,95,Jackson State University,1938,Yazoo City,Mississippi -535,Ed Burton,198,102,Michigan State University,1939,, -536,Donnie Butcher,188,90,Pikeville College,1936,Williamsport,Kentucky -537,Al Butler,188,79,Niagara University,1938,Rochester,New York -538,Howie Carl,175,72,DePaul University,1938,Chicago,Illinois -539,Jimmy Darrow,178,77,Bowling Green State University,1937,Akron,Ohio -540,Johnny Egan,180,81,Providence College,1939,Hartford,Connecticut -541,Rich Eichhorst,180,81,,1939,, -542,Cleo Hill,185,83,Winston-Salem State University,1938,Newark,New Jersey -543,Ron Horn,201,99,Indiana University,1938,Marion,Indiana -544,Doug Kistler,206,95,Duke University,1938,, -545,York Larese,193,83,University of North Carolina,1938,New York,New York -546,Ted Luckenbill,198,92,University of Houston,1939,, -547,Whitey Martin,188,83,St. Bonaventure University,1939,, -548,Tom Meschery,198,97,Saint Mary's College of California,1938,Harbin Manchuria,China -549,Paul Neumann,185,79,Stanford University,1938,, -550,Bevo Nordmann,208,102,Saint Louis University,1939,St. Louis,Missouri -551,Chuck Osborne,198,95,Western Kentucky University,1939,, -552,Gary Phillips,190,85,University of Houston,1939,Quincy,Illinois -553,Frank Radovich,203,106,Indiana University,1938,, -554,Ray Scott,206,97,University of Portland,1938,Philadelphia,Pennsylvania -555,Lee Shaffer,201,99,University of North Carolina,1939,Chicago,Illinois -556,Bob Sims,196,99,Pepperdine University,1938,, -557,Adrian Smith,185,81,University of Kentucky,1936,Farmington,Kentucky -558,Bill Smith,196,86,Saint Peter's College,1939,, -559,Sam Stith,188,83,St. Bonaventure University,1937,Greenville County,Virginia -560,Horace Walker,190,95,Michigan State University,1937,Chester,Pennsylvania -561,Bob Wiesenhahn,193,97,University of Cincinnati,1938,, -562,Wayne Yates,203,106,University of Memphis,1937,, -563,Dave Zeller,185,79,Miami University,1939,, -564,John Barnhill,185,81,Tennessee State University,1938,Sturgis,Kentucky -565,Zelmo Beaty*,206,102,Prairie View A&M University,1939,Hillister,Texas -566,Bill Bridges,198,103,University of Kansas,1939,Hobbs,New Mexico -567,Len Chappell,203,108,Wake Forest University,1941,Portage,Pennsylvania -568,Johnny Cox,193,81,University of Kentucky,1936,Neon,Kentucky -569,Dave DeBusschere*,198,99,University of Detroit Mercy,1940,Detroit,Michigan -570,Terry Dischinger,201,85,Purdue University,1940,Terre Haute,Indiana -571,Danny Doyle,203,90,Belmont Abbey College,1940,Long Island City,New York -572,Bob Duffy,193,79,Tulane University,1922,, -573,Leroy Ellis,208,95,St. John's University,1940,Far Rockaway,New York -574,Dave Fedor,198,86,Florida State University,1940,, -575,Jack Foley,190,77,College of the Holy Cross,1939,Worcester,Massachusetts -576,Dave Gunther,201,86,University of Iowa,1937,, -577,Charlie Hardnett,203,102,Grambling State University,1938,Atlanta,Georgia -578,John Havlicek*,196,92,Ohio State University,1940,Martins Ferry,Ohio -579,Wayne Hightower,203,87,University of Kansas,1940,Philadelphia,Pennsylvania -580,Paul Hogue,203,87,,1940,, -581,Kevin Loughery,190,86,St. John's University,1940,Brooklyn,New York -582,Bill McGill,206,102,University of Utah,1939,San Angelo,Texas -583,Porter Meriwether,188,81,Tennessee State University,1940,, -584,Howie Montgomery,196,99,University of Texas-Pan American,1940,, -585,Don Nelson*,198,95,University of Iowa,1940,Muskegon,Michigan -586,Mel Nowell,188,77,Ohio State University,1939,, -587,Bud Olsen,203,99,University of Louisville,1940,, -588,John Rudometkin,198,92,University of Southern California,1940,Santa Maria,California -589,Jeff Slade,198,99,Kenyon College,1941,, -590,Tom Stith,196,95,St. Bonaventure University,1939,Greenville County,Virginia -591,Dan Swartz,193,97,Morehead State University,1934,Owingsville,Kentucky -592,Dan Tieman,183,83,Thomas More College,1940,Covington,Kentucky -593,Gene Tormohlen,183,83,,1940,, -594,Chico Vaughn,188,86,Southern Illinois University,1940,Portland,Oregon -595,Chet Walker*,198,96,Bradley University,1940,Bethlehem,Mississippi -596,Ben Warley,196,90,Tennessee State University,1936,Washington,District of Columbia -597,Ralph Wells,185,81,Northwestern University,1940,, -598,Hubie White,193,92,Villanova University,1940,, -599,Gene Wiley,208,95,Wichita State University,1937,, -600,Jay Arnette,188,79,University of Texas at Austin,1938,Austin,Texas -601,Larry Comley,196,95,Kansas State University,1939,, -602,Mel Gibson,190,81,Western Carolina University,1940,Cordova,North Carolina -603,Jerry Greenspan,196,88,University of Maryland,1941,, -604,Reggie Harding,213,112,,1942,, -605,Jerry Harkness,188,79,Loyola University of Chicago,1940,New York,New York -606,Art Heyman,196,92,Duke University,1941,New York,New York -607,Gary Hill,193,83,Oklahoma City University,1941,, -608,Tom Hoover,206,104,Villanova University,1941,Washington,District of Columbia -609,Gus Johnson*,198,104,University of Idaho,1938,Akron,Ohio -610,Jim King,188,79,University of Tulsa,1941,Tulsa,Oklahoma -611,Don Kojis,196,97,Marquette University,1939,Milwaukee,Wisconsin -612,Jerry Lucas*,203,104,Ohio State University,1940,Middletown,Ohio -613,Eddie Miles,193,88,Seattle University,1940,North Little Rock,Arkansas -614,Mel Peterson,193,83,Wheaton College,1938,Thief River Falls,Minnesota -615,Ken Rohloff,183,88,North Carolina State University,1939,, -616,Larry Siegfried,190,86,Ohio State University,1939,Shelby,Ohio -617,Roger Strickland,196,90,Jacksonville University,1940,Jacksonville,Florida -618,Tom Thacker,188,77,University of Cincinnati,1939,Covington,Kentucky -619,Rod Thorn,193,88,West Virginia University,1941,Princeton,West Virginia -620,Nate Thurmond*,211,102,Bowling Green State University,1941,Akron,Ohio -621,Gerry Ward,193,88,Boston College,1941,, -622,John Windsor,203,97,Stanford University,1940,, -623,Jim Barnes,203,95,University of Texas at El Paso,1941,Tuckerman,Arkansas -624,Ron Bonham,196,87,University of Cincinnati,1942,Muncie,Indiana -625,Gary Bradds,203,95,Ohio State University,1942,Jamestown,Ohio -626,Em Bryant,185,79,DePaul University,1938,Chicago,Illinois -627,Joe Caldwell,196,88,Arizona State University,1941,Texas City,Texas -628,Mel Counts,213,104,Oregon State University,1941,Coos Bay,Oregon -629,Steve Courtin,185,85,Saint Joseph's University,1942,, -630,Jerry Grote,193,97,Loyola Marymount University,1940,, -631,Happy Hairston,201,102,New York University,1942,Winston-Salem,North Carolina -632,Walt Hazzard,201,102,,1942,, -633,Les Hunter,201,95,Loyola University of Chicago,1942,Nashville,Tennessee -634,Luke Jackson,206,108,University of Texas-Pan American,1941,San Marcos,Texas -635,Larry Jones,188,81,University of Toledo,1942,Columbus,Ohio -636,Wali Jones,193,102,University of Kentucky,1926,Harlan,Kentucky -637,Howard Komives,185,83,Bowling Green State University,1941,Toledo,Ohio -638,Bud Koper,198,95,Oklahoma City University,1942,Rocky,Oklahoma -639,Barry Kramer,193,90,New York University,1942,Schenectady,New York -640,McCoy McLemore,201,104,Drake University,1942,Houston,Texas -641,Jeff Mullins,193,86,Duke University,1942,Astoria,New York -642,Cotton Nash,196,97,University of Kentucky,1942,Jersey City,New Jersey -643,Willis Reed*,206,106,Grambling State University,1942,Hico,Louisiana -644,Paul Silas,201,99,Creighton University,1943,Prescott,Arkansas -645,John Thompson*,208,102,Providence College,1941,Washington,District of Columbia -646,John Tresvant,201,97,Seattle University,1939,, -647,George Wilson,203,102,University of Cincinnati,1942,Meridian,Mississippi -648,Rick Barry*,201,92,University of Miami,1944,Elizabeth,New Jersey -649,Jesse Branson,201,88,Elon University,1942,Burlington,North Carolina -650,Bill Buntin,201,113,University of Michigan,1942,Detroit,Michigan -651,Barry Clemens,198,95,Ohio Wesleyan University,1943,Dayton,Ohio -652,Billy Cunningham*,198,95,University of North Carolina,1943,Brooklyn,New York -653,Keith Erickson,196,88,University of California - Los Angeles,1944,San Francisco,California -654,John Fairchild,203,92,Brigham Young University,1943,Encinitas,California -655,Will Frazier,201,95,Grambling State University,1942,Minden,Louisiana -656,Gail Goodrich*,185,77,University of California - Los Angeles,1943,Los Angeles,California -657,Fred Hetzel,203,99,Davidson College,1942,Washington,District of Columbia -658,Jon McGlocklin,196,92,Indiana University,1943,Franklin,Indiana -659,Thales McReynolds,190,83,Miles College,1943,Birmingham,Alabama -660,Ron Reed,196,92,University of Notre Dame,1942,La Porte,Indiana -661,Jerry Sloan*,196,88,University of Evansville,1942,McLeansboro,Illinois -662,Willie Somerset,173,77,Duquesne University,1942,Sharon,Pennsylvania -663,Dave Stallworth,201,90,Wichita State University,1941,Dallas,Texas -664,Joe Strawder,208,106,Bradley University,1940,Belle Glade,Florida -665,Dick Van,208,106,,1940,, -666,Tom Van,208,106,,1940,, -667,Bob Warlick,196,90,Pepperdine University,1941,Hickory,North Carolina -668,Jim Washington,198,95,Villanova University,1943,Philadelphia,Pennsylvania -669,Ron Watts,198,95,Wake Forest University,1943,, -670,Bob Weiss,188,81,Pennsylvania State University,1942,Easton,Pennsylvania -671,Henry Akin,208,102,Morehead State University,1944,Detroit,Michigan -672,Johnny Austin,183,77,Boston College,1944,Washington,District of Columbia -673,Jim Barnett,203,95,University of Texas at El Paso,1941,Tuckerman,Arkansas -674,Dave Bing*,190,81,Syracuse University,1943,Washington,District of Columbia -675,John Block,206,93,University of Southern California,1944,Los Angeles,California -676,Nate Bowman,208,104,Wichita State University,1943,Fort Worth,Texas -677,Jerry Chambers,196,83,University of Utah,1943,Washington,District of Columbia -678,Archie Clark,188,79,University of Minnesota,1941,Conway,Arkansas -679,Freddie Crawford,193,85,St. Bonaventure University,1941,New York,New York -680,Dave Deutsch,185,77,University of Rochester,1945,Brooklyn,New York -681,Joe Ellis,198,79,University of San Francisco,1944,, -682,Hank Finkel,213,108,University of Dayton,1942,Union City,New Jersey -683,Matt Guokas,190,88,Saint Joseph's University,1915,, -684,Bob Hogsett,201,104,University of Tennessee,1941,, -685,Lou Hudson,196,95,University of Minnesota,1944,Greensboro,North Carolina -686,Neil Johnson,203,95,Ohio State University,1929,Chillicothe,Ohio -687,Toby Kimball,198,99,University of Connecticut,1942,Framingham,Massachusetts -688,Tommy Kron,196,90,University of Kentucky,1943,, -689,Clyde Lee,208,92,Vanderbilt University,1944,Nashville,Tennessee -690,Bob Love,203,97,Southern University and A&M College,1942,Bastrop,Louisiana -691,Jack Marin,201,90,Duke University,1944,Sharon,Pennsylvania -692,Bill Melchionni,185,74,Villanova University,1944,Philadelphia,Pennsylvania -693,Wayne Molis,203,104,Lewis University,1943,Chicago,Illinois -694,Erwin Mueller,203,104,University of San Francisco,1944,, -695,Dorie Murrey,203,97,University of Detroit Mercy,1943,, -696,Flynn Robinson,185,83,University of Wyoming,1941,Elgin,Illinois -697,Cazzie Russell,196,98,University of Michigan,1944,Chicago,Illinois -698,Dave Schellhase,190,92,Purdue University,1944,Evansville,Indiana -699,Dick Snyder,196,93,Davidson College,1944,North Canton,Ohio -700,Jim Ware,201,95,Oklahoma City University,1944,Natchez,Mississippi -701,Walt Wesley,211,99,University of Kansas,1945,Fort Myers,Florida -702,Bud Acton,198,95,Hillsdale College,1942,, -703,Cliff Anderson,188,90,Saint Joseph's University,1944,, -704,Bill Bradley*,196,92,Princeton University,1943,Crystal City,Missouri -705,Tyrone Britt,193,86,Johnson C. Smith University,1944,, -706,Jim Burns,190,88,Northwestern University,1945,, -707,Jim Caldwell,208,108,Georgia Institute of Technology,1943,Durham,North Carolina -708,George Carter,193,95,St. Bonaventure University,1944,Buffalo,New York -709,Jim Davis,206,102,University of Colorado,1941,Muncie,Indiana -710,Bill Dinwiddie,201,99,New Mexico Highlands University,1943,, -711,Sonny Dove,201,89,St. John's University,1945,Brooklyn,New York -712,Ron Filipek,196,92,Tennessee Technological University,1944,, -713,Jim Fox,208,104,University of South Carolina,1943,Atlanta,Georgia -714,Walt Frazier*,193,90,Southern Illinois University,1945,Atlanta,Georgia -715,Mal Graham,185,83,New York University,1945,, -716,Gary Gray,185,83,Oklahoma City University,1945,, -717,Dennis Hamilton,203,95,Arizona State University,1944,Huntington Beach,California -718,Clem Haskins,190,88,Western Kentucky University,1943,Campbellsville,Kentucky -719,Al Jackson,185,83,Wilberforce University,1943,Cleveland,Ohio -720,Phil Jackson*,203,99,University of North Dakota,1945,Deer Lodge,Montana -721,Johnny Jones,201,92,California State University - Los Angeles,1943,Washington,District of Columbia -722,Nick Jones,188,86,University of Oregon,1945,, -723,Dave Lattin,198,102,University of Texas at El Paso,1943,Houston,Texas -724,George Lehmann,183,81,Campbell University,1942,Riverside,New Jersey -725,Bobby Lewis,190,79,University of North Carolina,1945,, -726,Paul Long,188,81,Wake Forest University,1944,Louisville,Kentucky -727,Plummer Lott,196,95,Seattle University,1945,, -728,Ed Manning,201,95,Jackson State University,1944,Summit,Mississippi -729,Stan McKenzie,196,88,New York University,1944,Miami,Florida -730,Jay Miller,196,92,University of Notre Dame,1943,St. Louis,Missouri -731,Earl Monroe*,190,83,Winston-Salem State University,1944,Philadelphia,Pennsylvania -732,George Patterson,203,104,University of Toledo,1939,, -733,Jim Reid,198,95,Winston-Salem State University,1945,, -734,Pat Riley*,193,92,University of Kentucky,1945,Rome,New York -735,Bob Rule,206,99,Colorado State University,1944,Riverside,California -736,Craig Spitzer,213,102,Tulane University,1945,, -737,Al Tucker,203,86,Oklahoma Baptist University,1943,Dayton,Ohio -738,Bill Turner,201,99,University of Akron,1944,, -739,Jimmy Walker,190,88,Providence College,1944,Amherst,Virginia -740,Rick Weitzman,188,79,Northeastern University,1946,, -741,Roland West,193,80,University of Cincinnati,1944,, -742,John Wetzel,196,86,Virginia Polytechnic Institute and State University,1944,Waynesboro,Virginia -743,Ken Wilburn,198,88,Central State University,1944,River Rouge,Michigan -744,Art Williams,185,81,California State Polytechnic University - Pomona,1939,Bonham,Texas -745,Tom Workman,201,98,Seattle University,1944,Seattle,Washington -746,Zaid Abdul-Aziz,206,106,Iowa State University,1946,Brooklyn,New York -747,Rick Adelman,185,79,Loyola Marymount University,1946,Lynwood,California -748,Bob Allen,206,92,Marshall University,1946,, -749,Harry Barnes,190,92,Northeastern University,1945,, -750,Ed Biedenbach,185,79,North Carolina State University,1945,, -751,Tom Boerwinkle,213,120,University of Tennessee,1945,Cleveland,Ohio -752,Jay Carty,203,99,Oregon State University,1941,, -753,Don Chaney,196,95,University of Houston,1946,Baton Rouge,Louisiana -754,Dick Cunningham,208,111,Murray State University,1946,Canton,Ohio -755,Fred Foster,196,95,Miami University,1946,Springfield,Ohio -756,Pat Frink,193,88,University of Colorado,1945,, -757,Gary Gregor,201,102,University of South Carolina,1945,Charlestown,West Virginia -758,Al Hairston,185,77,Bowling Green State University,1945,, -759,Shaler Halimon,196,90,Utah State University,1945,Tampa,Florida -760,Skip Harlicka,185,83,University of South Carolina,1946,, -761,Art Harris,193,83,Stanford University,1947,, -762,Elvin Hayes*,206,106,University of Houston,1945,Rayville,Louisiana -763,Bill Hewitt,201,95,University of Southern California,1944,Cambridge,Massachusetts -764,Bill Hosket,203,102,Ohio State University,1946,Dayton,Ohio -765,Rich Johnson,201,95,Grambling State University,1946,, -766,Bob Kauffman,203,108,Guilford College,1946,Brooklyn,New York -767,Joe Kennedy,198,95,Duke University,1947,, -768,Rod Knowles,206,97,Davidson College,1946,, -769,Stu Lantz,190,79,University of Nebraska,1946,Uniontown,Pennsylvania -770,Don May,193,90,University of Dayton,1946,Dayton,Ohio -771,Otto Moore,211,92,University of Texas-Pan American,1946,Miami,Florida -772,Dave Newmark,213,108,Columbia University,1946,Brooklyn,New York -773,Rich Niemann,213,111,Saint Louis University,1946,St. Louis,Missouri -774,Barry Orms,190,86,Saint Louis University,1946,St. Louis,Missouri -775,Charlie Paulk,203,99,Northeastern State University,1946,Fitzgerald,Georgia -776,Loy Petersen,196,92,Oregon State University,1945,, -777,Bob Quick,196,97,Xavier University,1946,Thornton,Mississippi -778,Craig Raymond,211,106,Brigham Young University,1945,Aberdeen,Washington -779,Mike Riordan,193,90,Providence College,1945,New York,New York -780,Dale Schlueter,208,102,Colorado State University,1945,Tacoma,Washington -781,Doug Sims,201,88,Kent State University,1943,Elba,Alabama -782,Greg Smith,196,88,Western Kentucky University,1947,Princeton,Kentucky -783,John Trapp,201,95,University of Nevada - Las Vegas,1945,Detroit,Michigan -784,Wes Unseld*,201,111,University of Louisville,1946,Louisville,Kentucky -785,Dwight Waller,198,99,Tennessee State University,1945,Brownsville,Tennessee -786,Cliff Williams,190,81,Bowling Green State University,1945,, -787,Ron Williams,190,85,West Virginia University,1944,Weirton,West Virginia -788,Sam Williams,190,81,University of Iowa,1945,, -789,Kareem Abdul-Jabbar*,218,102,University of California - Los Angeles,1947,New York,New York -790,Lucius Allen,188,79,University of California - Los Angeles,1947,Kansas City,Kansas -791,Wally Anderzunas,201,99,Creighton University,1946,, -792,John Arthurs,193,83,Tulane University,1947,, -793,Johnny Baum,196,90,Temple University,1946,Philadelphia,Pennsylvania -794,Butch Beard,190,83,University of Louisville,1947,Hardinsburg,Kentucky -795,Fred Carter,190,83,Mount St. Mary's University,1945,Philadelphia,Pennsylvania -796,Bob Dandridge,198,88,Norfolk State University,1947,Richmond,Virginia -797,Mike Davis,190,83,Virginia Union University,1946,Brooklyn,New York -798,Dick Garrett,190,83,Southern Illinois University,1947,, -799,Herm Gilliam,190,86,Purdue University,1946,Winston-Salem,North Carolina -800,Bob Greacen,201,93,Rutgers University,1947,, -801,Lamar Green,201,95,Morehead State University,1947,Birmingham,Alabama -802,Connie Hawkins*,203,95,University of Iowa,1942,Brooklyn,New York -803,Brian Heaney,188,81,Acadia University,1946,, -804,Steve Kuberski,203,97,Bradley University,1947,Moline,Illinois -805,Mike Lynn,201,97,University of California - Los Angeles,1945,Covina,California -806,Willie McCarter,190,79,Drake University,1946,Gary,Indiana -807,Steve Mix,201,97,University of Toledo,1947,Toledo,Ohio -808,Grady O'Malley,196,92,Manhattan College,1948,Boston,Massachusetts -809,Bud Ogden,198,97,Santa Clara University,1946,San Luis Obispo,California -810,Bob Portman,196,90,Creighton University,1947,San Francisco,California -811,Luther Rackley,208,99,Xavier University,1946,Bainbridge,Georgia -812,George Reynolds,193,88,University of Houston,1947,, -813,Rick Roberson,206,104,University of Cincinnati,1947,Memphis,Tennessee -814,Dave Scholz,203,99,University of Illinois at Urbana-Champaign,1948,, -815,Bingo Smith,196,86,Saint Peter's College,1939,, -816,Norm Van,196,86,,1939,, -817,Neal Walk,208,99,University of Florida,1948,Cleveland,Ohio -818,John Warren,190,81,St. John's University,1947,Sparta,Georgia -819,Jo Jo,190,81,,1947,, -820,Bernie Williams,190,79,La Salle University,1945,Washington,District of Columbia -821,Lee Winfield,188,78,University of North Texas,1947,St. Louis,Missouri -822,Don Adams,198,95,Northwestern University,1947,Atlanta,Georgia -823,Tiny Archibald*,185,68,University of Texas at El Paso,1948,New York,New York -824,Bob Arnzen,196,92,University of Notre Dame,1947,Covington,Kentucky -825,Dennis Awtrey,208,106,Santa Clara University,1948,Hollywood,California -826,Moe Barr,193,88,Duquesne University,1944,, -827,Tom Black,208,99,South Dakota State University,1941,, -828,Bob Christian,208,115,Grambling State University,1946,, -829,Jimmy Collins,188,79,New Mexico State University,1946,, -830,Joe Cooke,190,79,Indiana University,1948,, -831,Dave Cowens*,206,104,Florida State University,1948,Newport,Kentucky -832,Pete Cross,206,104,University of San Francisco,1948,, -833,Terry Driscoll,201,97,Boston College,1947,Winthrop,Massachusetts -834,Claude English,193,83,University of Rhode Island,1946,Columbus,Georgia -835,Greg Fillmore,216,108,Cheyney University of Pennsylvania,1947,Philadelphia,Pennsylvania -836,Levi Fontaine,193,86,University of Maryland Eastern Shore,1948,, -837,Jake Ford,190,81,University of Maryland Eastern Shore,1946,, -838,Gary Freeman,206,95,Oregon State University,1948,, -839,Walt Gilmore,198,102,Fort Valley State University,1947,, -840,Spencer Haywood*,203,102,University of Detroit Mercy,1949,Silver City,Mississippi -841,Gar Heard,198,99,University of Oklahoma,1948,Hogansville,Georgia -842,Al Henry,206,86,University of Wisconsin,1949,, -843,A.W. Holt,206,86,,1949,, -844,Greg Howard,206,97,University of New Mexico,1948,Pittsburgh,Pennsylvania -845,John Hummer,206,104,Princeton University,1948,Washington,District of Columbia -846,Greg Hyder,198,97,Eastern New Mexico University,1948,, -847,George Johnson,211,111,Stephen F. Austin State University,1947,Herleton,Texas -848,John Johnson,201,90,University of Iowa,1947,Carthage,Mississippi -849,Earnie Killum,190,81,Stetson University,1948,, -850,Ron Knight,201,97,California State University - Los Angeles,1947,, -851,Sam Lacey,208,106,New Mexico State University,1948,Indianaola,Mississippi -852,Bob Lanier*,211,113,St. Bonaventure University,1948,Buffalo,New York -853,Pete Maravich*,196,89,Louisiana State University,1947,Aliquippa,Pennsylvania -854,Harvey Marlatt,190,83,Eastern Michigan University,1948,, -855,Eddie Mast,206,99,Temple University,1948,Philadelphia,Pennsylvania -856,Jim McMillian,196,97,Columbia University,1948,Raeford,North Carolina -857,Larry Mikan,201,95,University of Minnesota,1948,, -858,Rex Morgan,196,86,Jacksonville University,1948,Charleston,Illinois -859,Calvin Murphy*,175,74,Niagara University,1948,Norwalk,Connecticut -860,Ralph Ogden,196,92,Santa Clara University,1948,, -861,Curtis Perry,201,99,Missouri State University,1948,Washington,District of Columbia -862,Geoff Petrie,193,86,Princeton University,1948,Darby,Pennsylvania -863,Mike Price,190,90,University of Illinois at Urbana-Champaign,1948,Russellville,Kentucky -864,Bob Riley,206,106,Mount St. Mary's University,1948,, -865,Paul Ruffner,208,102,Brigham Young University,1948,Downey,California -866,Mike Silliman,198,102,United States Military Academy,1944,Louisville,Kentucky -867,Garfield Smith,206,106,Eastern Kentucky University,1945,Campbellsville,Kentucky -868,Dave Sorenson,203,102,Ohio State University,1948,, -869,Dennis Stewart,198,99,University of Michigan,1947,, -870,Bill Stricker,206,95,University of the Pacific,1948,, -871,Gary Suiter,206,102,Midwestern State University,1945,, -872,Fred Taylor,196,81,University of Texas-Pan American,1948,Houston,Texas -873,Joe Thomas,198,92,Marquette University,1948,Canton,Georgia -874,Rudy Tomjanovich,203,98,University of Michigan,1948,Hamtramck,Michigan -875,John Vallely,190,83,University of California,1948,, -876,Cornell Warner,206,99,Jackson State University,1948,Jackson,Mississippi -877,Bobby Washington,180,79,Eastern Kentucky University,1947,, -878,Jeff Webb,193,77,Kansas State University,1948,, -879,Herb White,188,88,University of Georgia,1948,, -880,Milt Williams,188,82,Lincoln University of Missouri,1945,Seattle,Washington -881,Willie Williams,201,90,Florida State University,1946,, -882,Marv Winkler,185,74,University of Louisiana at Lafayette,1948,, -883,Gary Zeller,190,92,Drake University,1947,, -884,Bill Zopf,185,77,Duquesne University,1948,, -885,Odis Allison,198,88,University of Nevada - Las Vegas,1949,, -886,Vic Bartolome,213,104,Oregon State University,1948,, -887,Fred Brown,190,82,University of Iowa,1948,Milwaukee,Wisconsin -888,Austin Carr,193,90,University of Notre Dame,1948,Washington,District of Columbia -889,Sid Catlett,198,104,University of Notre Dame,1948,, -890,Phil Chenier,190,81,University of California,1950,Berkeley,California -891,Jim Cleamons,190,83,Ohio State University,1949,Lincolnton,North Carolina -892,Charlie Davis,188,72,Wake Forest University,1949,New York,New York -893,Jackie Dinkins,196,95,Voorhees College,1950,, -894,Ken Durrett,201,86,La Salle University,1948,Pittsburgh,Pennsylvania -895,Dick Gibbs,196,95,University of Texas at El Paso,1948,Ames,Iowa -896,Clarence Glover,203,95,Western Kentucky University,1947,Horse Cave,Kentucky -897,Jeff Halliburton,196,87,Drake University,1949,, -898,Fred Hilton,190,83,Grambling State University,1948,, -899,Jake Jones,190,81,Assumption College,1949,, -900,Mo Layton,185,81,University of Southern California,1948,Newark,New Jersey -901,Stan Love,206,97,University of Oregon,1949,Los Angeles,California -902,Charlie Lowery,190,83,University of Puget Sound,1949,, -903,Jim Marsh,201,97,University of Southern California,1946,, -904,Jim McDaniels,211,103,Western Kentucky University,1948,Scottsville,Kentucky -905,Gil McGregor,203,108,Wake Forest University,1949,, -906,Kenny McIntosh,201,102,Eastern Michigan University,1949,Detroit,Michigan -907,Cliff Meely,203,97,University of Colorado,1947,Rosedale,Mississippi -908,Dean Meminger,183,79,Marquette University,1948,Walterboro,South Carolina -909,John Mengelt,188,88,Auburn University,1949,Lacrosse,Wisconsin -910,Barry Nelson,208,104,Duquesne University,1949,, -911,Mike Newlin,193,90,University of Utah,1949,Portland,Oregon -912,Willie Norwood,201,99,Alcorn State University,1947,Carrolton,Mississippi -913,Steve Patterson,206,102,University of California - Los Angeles,1948,Riverside,California -914,Tom Payne,218,108,University of Kentucky,1950,, -915,Howard Porter,203,99,Villanova University,1948,Stuart,Florida -916,Clifford Ray,206,104,University of Oklahoma,1949,Union,South Carolina -917,Jackie Ridgle,193,88,University of California,1948,Altheimer,Arkansas -918,Rich Rinaldi,190,88,Saint Peter's College,1949,, -919,Curtis Rowe,201,102,University of California - Los Angeles,1949,Bessemer,Alabama -920,Charlie Scott,196,79,University of North Carolina,1948,New York,New York -921,Elmore Smith,213,113,Kentucky State University,1949,Macon,Georgia -922,Randy Smith,190,81,State University of New York College at Buffalo,1948,Bellport,New York -923,William Smith,213,99,Syracuse University,1949,, -924,Larry Steele,196,81,University of Kentucky,1949,Greencastle,Indiana -925,George Trapp,203,92,California State University - Long Beach,1948,Detroit,Michigan -926,Sidney Wicks,203,102,University of California - Los Angeles,1949,Los Angeles,California -927,Nate Williams,196,97,Utah State University,1950,Columbia,Louisiana -928,Isaiah Wilson,188,79,University of Baltimore,1948,Philadelphia,Pennsylvania -929,Dave Wohl,188,83,University of Pennsylvania,1949,Flushing,New York -930,Barry Yates,201,97,University of Maryland,1946,, -931,Charlie Yelverton,188,86,Fordham University,1948,, -932,Henry Bibby,185,83,University of California - Los Angeles,1949,Franklinton,North Carolina -933,Freddie Boyd,188,81,Oregon State University,1950,Bakersfield,California -934,Steve Bracey,185,79,University of Tulsa,1950,Brooklyn,New York -935,John Brisker,196,95,University of Toledo,1947,Detroit,Michigan -936,Roger Brown,196,92,University of Dayton,1942,Brooklyn,New York -937,Corky Calhoun,201,95,University of Pennsylvania,1950,Waukegan,Illinois -938,Bob Davis,201,97,Weber State University,1950,, -939,Dwight Davis,203,99,University of Houston,1949,Houston,Texas -940,Mickey Davis,190,83,Virginia Union University,1946,Brooklyn,New York -941,Charles Dudley,188,81,University of Washington,1950,Harrisburg,Pennsylvania -942,Scott English,198,92,University of Texas at El Paso,1950,Evanston,Illinois -943,Chris Ford,196,86,Villanova University,1949,Atlantic City,New Jersey -944,Harold Fox,188,79,Jacksonville University,1949,, -945,Rowland Garrett,198,95,Florida State University,1950,Canton,Mississippi -946,John Gianelli,208,99,University of the Pacific,1950,Stockton,California -947,Travis Grant,201,97,Kentucky State University,1950,Clayton,Alabama -948,Luther Green,201,86,Long Island University,1946,New York,New York -949,Charles Johnson,183,77,University of California,1949,Corpus Christi,Texas -950,Ollie Johnson,198,90,Temple University,1949,Philadelphia,Pennsylvania -951,Manny Leaks,203,102,Niagara University,1945,Cleveland,Ohio -952,Russ Lee,196,83,Marshall University,1950,Boston,Massachusetts -953,LaRue Martin,211,94,Loyola University of Chicago,1950,Chicago,Illinois -954,Bob McAdoo*,206,95,University of North Carolina,1951,Greensboro,North Carolina -955,Paul McCracken,193,81,California State University - Northridge,1950,New York,New York -956,Eric McWilliams,203,90,California State University - Long Beach,1950,Denver,Colorado -957,Mark Minor,198,97,Ohio State University,1950,, -958,Bob Nash,203,88,University of Hawaii,1950,Hartford,Connecticut -959,Lloyd Neal,201,102,Tennessee State University,1950,Talbottom,Georgia -960,Tom Patterson,198,99,Ouachita Baptist University,1948,, -961,Kevin Porter,183,77,Saint Francis University,1950,Chicago,Illinois -962,Jim Price,190,88,University of Louisville,1949,Russellville,Kentucky -963,Mike Ratliff,208,104,University of Wisconsin-Eau Claire,1951,New Albany,Mississippi -964,Tom Riker,208,102,University of South Carolina,1950,Rockville Centre,New York -965,Ron Riley,203,88,University of Southern California,1950,Los Angeles,California -966,Frank Russell,190,81,University of Detroit Mercy,1949,, -967,Frank Schade,185,77,University of Wisconsin-Eau Claire,1950,Wausau,Wisconsin -968,Sam Sibert,201,97,Kentucky State University,1949,, -969,Bud Stallworth,196,86,University of Kansas,1950,Hartselle,Alabama -970,Paul Stovall,193,97,Arizona State University,1948,, -971,Chuck Terry,198,97,California State University - Long Beach,1950,Long Beach,California -972,Justus Thigpen,185,72,Weber State University,1947,, -973,John Tschogl,198,93,University of California - Santa Barbara,1950,Chula Vista,California -974,Paul Westphal,193,88,University of Southern California,1950,Torrance,California -975,Harthorne Wingo,198,95,Friendship Junior College,1947,Tryon,North Carolina -976,Joby Wright,203,99,Indiana University,1950,, -977,Mike Bantom,206,90,Saint Joseph's University,1951,Philadelphia,Pennsylvania -978,Ron Behagen,206,83,University of Minnesota,1951,New York,New York -979,Dennis Bell,196,83,Drake University,1951,Cincinnati,Ohio -980,Jim Brewer,206,95,University of Minnesota,1951,Maywood,Illinois -981,Allan Bristow,201,95,Virginia Polytechnic Institute and State University,1951,Richmond,Virginia -982,John Brown,201,99,University of Missouri,1951,Frankfurt,Germany -983,Larry Cannon,193,88,La Salle University,1947,Philadelphia,Pennsylvania -984,Bill Chamberlain,198,85,University of North Carolina,1949,, -985,Ken Charles,190,81,Fordham University,1951,Trinidad and Tobago, -986,E.C. Coleman,190,81,,1951,, -987,Doug Collins,198,81,Illinois State University,1951,Christopher,Illinois -988,Mike D'Antoni,190,83,Marshall University,1951,Mullens,West Virginia -989,Mel Davis,198,99,St. John's University,1950,New York,New York -990,Derrek Dickey,201,98,University of Cincinnati,1951,Cincinnati,Ohio -991,Ernie DiGregorio,183,81,Providence College,1951,North Providence,Rhode Island -992,Steve Downing,203,102,Indiana University,1950,Indianapolis,Indiana -993,Rod Freeman,201,102,Vanderbilt University,1950,, -994,Bernie Fryer,190,83,Brigham Young University,1949,Bellingham,Washington -995,Jim Garvin,201,90,Boston University,1950,, -996,Phil Hankinson,203,88,University of Pennsylvania,1951,Augusta,Georgia -997,Nate Hawthorne,193,86,Southern Illinois University,1950,Mt. Vernon,Illinois -998,Tom Ingelsby,190,81,Villanova University,1951,Philadelphia,Pennsylvania -999,Dwight Jones,208,95,University of Houston,1952,Houston,Texas -1000,Ben Kelso,190,88,Central Michigan University,1949,, -1001,Tom Kozelko,203,99,University of Toledo,1951,Traverse City,Michigan -1002,Kevin Kunnert,213,104,University of Iowa,1951,Dubuque,Iowa -1003,Mike Macaluso,196,95,Canisius College,1951,, -1004,Ted Manakas,188,81,Princeton University,1951,, -1005,Vester Marshall,201,90,University of Oklahoma,1948,, -1006,Allie McGuire,188,81,St. John's University,1928,New York,New York -1007,Larry McNeill,206,88,Marquette University,1951,Hoke,North Carolina -1008,Gary Melchionni,188,83,Duke University,1951,Camden,New Jersey -1009,Louie Nelson,190,86,University of Washington,1951,Los Angeles,California -1010,Jim Owens,196,90,Arizona State University,1950,Los Angeles,California -1011,Ed Ratleff,198,88,California State University - Long Beach,1950,Bellefontaine,Ohio -1012,Joe Reaves,196,95,Bethel College,1950,, -1013,Mark Sibley,188,79,Northwestern University,1950,, -1014,Bob Verga,185,86,Duke University,1945,Neptune,New Jersey -1015,Kermit Washington,203,104,American University,1951,Washington,District of Columbia -1016,Slick Watts,185,79,Xavier University of Louisiana,1951,Rolling Ford,Mississippi -1017,Nick Weatherspoon,201,88,University of Illinois at Urbana-Champaign,1950,Greenwood,Mississippi -1018,Luke Witte,213,106,Ohio State University,1950,Philadelphia,Pennsylvania -1019,Dan Anderson,208,104,Augsburg College,1943,Minneapolis,Minnesota -1020,Jim Ard,203,97,University of Cincinnati,1948,Harvey,Illinois -1021,Gus Bailey,196,83,University of Texas at El Paso,1951,Gibson,North Carolina -1022,Leon Benbow,193,83,Jacksonville University,1950,Columbia,South Carolina -1023,Ken Boyd,196,88,Boston University,1952,Frederick,Maryland -1024,Gary Brokaw,193,80,University of Notre Dame,1954,New Brunswick,New Jersey -1025,Tom Burleson,218,102,North Carolina State University,1952,Crossnore,North Carolina -1026,Harvey Catchings,206,98,Hardin-Simmons University,1951,Jackson,Mississippi -1027,Jim Chones,211,99,Marquette University,1949,Racine,Wisconsin -1028,Ben Clyde,201,89,Florida State University,1951,Albany,Georgia -1029,Jesse Dark,196,95,Virginia Commonwealth University,1951,Richmond,Virginia -1030,Rod Derline,183,79,Seattle University,1952,Elma,Washington -1031,John Drew,198,92,Gardner-Webb University,1954,Vredenburgh,Alabama -1032,Dennis DuVal,190,79,Syracuse University,1952,Westbury,New York -1033,Al Eberhard,198,102,University of Missouri,1952,Cedar Rapids,Iowa -1034,Leonard Gray,203,108,California State University - Long Beach,1951,Kansas City,Kansas -1035,Bernie Harris,208,90,Virginia Commonwealth University,1950,Roanoke,Virginia -1036,Steve Hawes,206,99,University of Washington,1950,Seattle,Washington -1037,Tom Henderson,190,86,University of Hawaii,1952,Newberry,South Carolina -1038,Greg Jackson,183,81,Guilford College,1952,Brooklyn,New York -1039,Wardell Jackson,201,90,Ohio State University,1951,Yazoo City,Mississippi -1040,Aaron James,203,95,Grambling State University,1952,New Orleans,Louisiana -1041,Mickey Johnson,208,86,Aurora University,1952,Chicago,Illinois -1042,Jimmy Jones,193,85,Grambling State University,1945,Tallulah,Louisiana -1043,Frank Kendrick,198,89,Purdue University,1950,Indianapolis,Indiana -1044,Len Kosmalski,213,111,University of Tennessee,1951,Cleveland,Ohio -1045,Bill Ligon,193,81,Vanderbilt University,1952,Nashville,Tennessee -1046,Phil Lumpkin,183,74,Miami University,1951,Dayton,Ohio -1047,Glenn McDonald,198,86,California State University - Long Beach,1952,Kewanee,Illinois -1048,Eric Money,183,77,University of Arizona,1955,Detroit,Michigan -1049,Connie Norman,190,79,University of Arizona,1953,Detroit,Michigan -1050,Kevin Restani,206,102,University of San Francisco,1951,San Francisco,California -1051,Truck Robinson,201,102,Tennessee State University,1951,Jacksonville,Florida -1052,Campy Russell,196,98,University of Michigan,1944,Chicago,Illinois -1053,Fred Saunders,201,95,Syracuse University,1951,Columbus,Ohio -1054,Tal Skinner,196,88,University of Maryland Eastern Shore,1952,Berlin,Maryland -1055,Don Smith,188,86,University of Minnesota,1920,Minnesota, -1056,Phil Smith,193,83,University of San Francisco,1952,San Francisco,California -1057,Mike Sojourner,206,102,University of Utah,1953,Philadelphia,Pennsylvania -1058,Kevin Stacom,190,83,Providence College,1951,New York,New York -1059,George Thompson,188,90,Marquette University,1947,Brooklyn,New York -1060,Dean Tolson,203,86,University of Arkansas,1951,Kansas City,Missouri -1061,Foots Walker,183,83,State University of West Georgia,1951,Southampton,New York -1062,Bill Walton*,211,95,University of California - Los Angeles,1952,La Mesa,California -1063,Perry Warbington,188,74,Georgia Southern University,1952,Atlabta,Georgia -1064,Stan Washington,193,86,University of San Diego,1952,Washington,District of Columbia -1065,Scott Wedman,201,97,University of Colorado,1952,Harper,Kansas -1066,Owen Wells,201,90,University of Detroit Mercy,1950,Providence,Rhode Island -1067,Jamaal Wilkes*,198,86,University of California - Los Angeles,1953,Berkeley,California -1068,Earl Williams,201,104,Winston-Salem State University,1951,Levittown,Pennsylvania -1069,Bobby Wilson,193,83,West Virginia State University,1926,, -1070,Brian Winters,193,83,University of South Carolina,1952,Rockaway,New York -1071,Alvan Adams,206,95,University of Oklahoma,1954,Lawrence,Kansas -1072,Jerome Anderson,196,88,West Virginia University,1953,Mullens,West Virginia -1073,Jerry Baskerville,201,86,Temple University,1951,Philadelphia,Pennsylvania -1074,Bob Bigelow,201,97,University of Pennsylvania,1953,Boston,Massachusetts -1075,Tom Boswell,206,99,University of South Carolina,1953,Montgomery,Alabama -1076,Junior Bridgeman,196,95,University of Louisville,1953,East Chicago,Indiana -1077,Joe Bryant,206,83,La Salle University,1954,Philadelphia,Pennsylvania -1078,Al Carlson,211,106,University of Oregon,1951,Oceanside,California -1079,Jim Creighton,203,90,University of Colorado,1950,Billings,Montana -1080,Darryl Dawkins,211,113,,1957,Orlando,Florida -1081,Henry Dickerson,193,86,University of Charleston,1951,Berkley,West Virginia -1082,Eric Fernsten,208,92,University of San Francisco,1953,Oakland,California -1083,Larry Fogle,196,92,Canisius College,1953,Brooklyn,New York -1084,Don Ford,206,97,University of California - Santa Barbara,1952,Santa Barbara,California -1085,World B.,206,97,,1952,, -1086,Donnie Freeman,190,83,University of Illinois at Urbana-Champaign,1944,Madison,Illinois -1087,Kevin Grevey,196,95,University of Kentucky,1953,Hamilton,Ohio -1088,Bob Gross,198,90,California State University - Long Beach,1953,San Pedro,California -1089,Lindsay Hairston,201,81,Michigan State University,1951,Detroit,Michigan -1090,Glenn Hansen,193,92,Louisiana State University,1952,Devils Lake,North Dakota -1091,Robert Hawkins,193,86,Illinois State University,1954,Detroit,Michigan -1092,Wilbur Holland,183,79,University of New Orleans,1951,Columbus,Georgia -1093,Lionel Hollins,190,83,Arizona State University,1953,Ark City,Kansas -1094,Steve Jones,196,92,University of Oregon,1942,Alexandria,Louisiana -1095,Rich Kelley,213,106,Stanford University,1953,San Mateo,California -1096,Tom Kropp,190,92,University of Nebraska at Kearney,1953,Grand Island,Nebraska -1097,C.J. Kupec,190,92,,1953,, -1098,John Lambert,208,102,University of Southern California,1953,Berkeley,California -1099,John Laskowski,198,83,Indiana University,1953,South Bend,Indiana -1100,Greg Lee,190,86,University of California - Los Angeles,1951,Reseda,California -1101,Clyde Mayes,203,102,Furman University,1953,Greenville,South Carolina -1102,Ken Mayfield,188,83,Tuskegee University,1948,Chicago,Illinois -1103,Jim McElroy,190,86,Central Michigan University,1953,Cotton Plant,Arkansas -1104,George McGinnis,203,106,Indiana University,1950,Indianapolis,Indiana -1105,Tom McMillen,211,97,University of Maryland,1952,Elmira,New York -1106,Joe Meriweather,208,97,Southern Illinois University,1953,Phenix City,Alabama -1107,Dave Meyers,203,97,University of California - Los Angeles,1953,San Diego,California -1108,Frank Oleynick,188,83,Seattle University,1955,Bridgeport,Connecticut -1109,Cliff Pondexter,206,105,California State University - Long Beach,1954,Fresno,California -1110,Bill Robinzine,201,104,DePaul University,1953,Chicago,Illinois -1111,John Roche,190,77,University of South Carolina,1949,New York,New York -1112,Bruce Seals,203,95,Xavier University of Louisiana,1953,New Orleans,Louisiana -1113,Ed Searcy,198,95,St. John's University,1952,New York,New York -1114,Gene Short,198,90,Jackson State University,1953,Macon,Mississippi -1115,John Shumate,206,106,University of Notre Dame,1952,Greenville,South Carolina -1116,Ricky Sobers,190,89,University of Nevada - Las Vegas,1953,Bronx,New York -1117,Terry Thomas,203,99,University of Detroit Mercy,1953,Detroit,Michigan -1118,Rudy White,188,88,Arizona State University,1953,Silver City,New Mexico -1119,Gus Williams,188,79,University of Southern California,1953,Mount Vernon,New York -1120,Bill Willoughby,203,92,,1957,Englewood,New Jersey -1121,Tom Abernethy,201,99,Indiana University,1954,South Bend,Indiana -1122,Bird Averitt,185,77,Pepperdine University,1952,Hopkinsville,Kentucky -1123,Tom Barker,211,102,University of Hawaii,1955,Harlingen,Texas -1124,Marvin Barnes,203,95,Providence College,1952,Providence,Rhode Island -1125,Norton Barnhill,193,92,Washington State University,1953,Winston-Salem,North Carolina -1126,Mike Barr,190,81,Duquesne University,1950,Canton,Ohio -1127,Tim Bassett,203,102,University of Georgia,1951,Washington,District of Columbia -1128,Byron Beck,206,102,University of Denver,1945,Ellensburg,Washington -1129,Mel Bennett,201,90,University of Pittsburgh,1955,Pittsburgh,Pennsylvania -1130,Ron Boone,188,90,Idaho State University,1946,Oklahoma City,Oklahoma -1131,Quinn Buckner,190,86,Indiana University,1954,Phoenix,Illinois -1132,Ticky Burden,188,83,University of Utah,1953,Haines City,Florida -1133,Don Buse,193,86,University of Evansville,1950,Huntingburg,Indiana -1134,Mack Calvin,183,74,University of Southern California,1947,Fort Worth,Texas -1135,M.L. Carr,183,74,,1947,, -1136,Cornelius Cash,203,97,Bowling Green State University,1952,Macon,Mississippi -1137,Norm Cook,203,95,University of Kansas,1955,Chicago,Illinois -1138,Louie Dampier*,183,77,University of Kentucky,1944,Indianapolis,Indiana -1139,Mel Daniels*,206,99,University of New Mexico,1944,Detroit,Michigan -1140,Adrian Dantley*,196,94,University of Notre Dame,1956,Washington,District of Columbia -1141,Johnny Davis,188,77,University of Dayton,1955,Detroit,Michigan -1142,Ron Davis,198,89,Washington State University,1954,Phoenix,Arizona -1143,Randy Denton,208,108,Duke University,1949,Raleigh,North Carolina -1144,Coby Dietrick,208,99,San Jose State University,1948,Riverside,California -1145,Leon Douglas,208,104,University of Alabama,1954,Leighton,Alabama -1146,Mike Dunleavy,190,81,University of South Carolina,1954,Brooklyn,New York -1147,Jim Eakins,211,97,Brigham Young University,1946,Sacramento,California -1148,Len Elmore,206,99,University of Maryland,1952,New York,New York -1149,Darrell Elston,193,86,University of North Carolina,1952,Tipton,Indiana -1150,Alex English*,201,86,University of South Carolina,1954,Columbia,South Carolina -1151,Julius Erving*,201,95,University of Massachusetts Amherst,1950,Roosevelt,New York -1152,Butch Feher,193,83,Vanderbilt University,1954,Flint,Michigan -1153,Mike Flynn,188,81,University of Kentucky,1953,Casablanca,Morocco -1154,Terry Furlow,193,86,Michigan State University,1954,Flint,Michigan -1155,Mike Gale,193,83,Elizabeth City State University,1950,Philadelphia,Pennsylvania -1156,Gus Gerard,203,90,University of Virginia,1953,Uniontown,Pennsylvania -1157,George Gervin*,201,81,Eastern Michigan University,1952,Detroit,Michigan -1158,Artis Gilmore*,218,108,Jacksonville University,1949,Chipley,Florida -1159,Mike Green,208,90,Louisiana Tech University,1951,McComb,Mississippi -1160,Steve Green,201,99,Indiana University,1953,Madison,Wisconsin -1161,Paul Griffin,206,92,Western Michigan University,1954,Shelby,Michigan -1162,Rudy Hackett,206,95,Syracuse University,1953,Mount Vernon,New York -1163,Phil Hicks,201,92,Tulane University,1953,Chicago,Illinois -1164,Armond Hill,193,86,Princeton University,1953,Brooklyn,New York -1165,Darnell Hillman,206,97,San Jose State University,1949,Sacramento,California -1166,Mo Howard,188,77,University of Maryland,1954,Philadelphia,Pennsylvania -1167,Kim Hughes,211,99,University of Wisconsin,1952,Freeport,Illinois -1168,Dan Issel*,206,106,University of Kentucky,1948,Batavia,Illinois -1169,Dennis Johnson*,193,83,Pepperdine University,1954,San Pedro,California -1170,Bobby Jones,206,95,University of North Carolina,1951,Charlotte,North Carolina -1171,Caldwell Jones,211,98,Albany State University,1950,McGehee,Arkansas -1172,Rich Jones,198,99,University of Memphis,1946,Memphis,Tennessee -1173,Robin Jones,206,102,Saint Louis University,1954,St. Louis,Missouri -1174,Wil Jones,190,83,Northwestern University,1936,, -1175,George Karl,190,83,University of North Carolina,1952,Penn Hills,Pennsylvania -1176,Goo Kennedy,196,92,Texas Christian University,1949,Charlotte,North Carolina -1177,Larry Kenon,206,92,University of Memphis,1952,Birmingham,Alabama -1178,Billy Knight,198,88,University of Pittsburgh,1952,Braddock,Pennsylvania -1179,Mitch Kupchak,206,104,University of North Carolina,1954,Hicksville,New York -1180,Bo Lamar,185,81,University of Louisiana at Lafayette,1951,Columbus,Ohio -1181,Ron Lee,193,87,University of Oregon,1952,Boston,Massachusetts -1182,Scott Lloyd,208,104,Arizona State University,1952,Chicago,Illinois -1183,John Lucas,190,79,University of Maryland,1953,Durham,North Carolina -1184,Maurice Lucas,206,97,Marquette University,1952,Pittsburgh,Pennsylvania -1185,Moses Malone*,208,97,,1955,Petersburg,Virginia -1186,Scott May,201,97,Indiana University,1954,Sandusky,Ohio -1187,Andre McCarter,190,86,University of California - Los Angeles,1953,Philadelphia,Pennsylvania -1188,Ted McClain,185,81,Tennessee State University,1946,Nashville,Tennessee -1189,Allen Murphy,196,86,University of Louisville,1952,Birmingham,Alabama -1190,Swen Nater,211,108,University of California - Los Angeles,1950,Denhelder,Netherlands -1191,Johnny Neumann,198,90,University of Mississippi,1951,Memphis,Tennessee -1192,Mark Olberding,203,102,University of Minnesota,1956,Melrose,Minnesota -1193,Tom Owens,208,97,University of South Carolina,1949,Bronx,New York -1194,Joe Pace,208,99,Coppin State University,1953,New Brunswick,New Jersey -1195,Robert Parish*,213,104,Centenary College of Louisiana,1953,Shreveport,Louisiana -1196,Sonny Parker,198,90,Texas A&M University,1955,Chicago,Illinois -1197,Billy Paultz,211,106,St. John's University,1948,River Edge,New Jersey -1198,Marv Roberts,203,90,Utah State University,1950,Brooklyn,New York -1199,Dave Robisch,208,106,University of Kansas,1949,Cincinnati,Ohio -1200,Marshall Rogers,185,86,University of Texas-Pan American,1953,St. Louis,Missouri -1201,Dan Roundfield,203,92,Central Michigan University,1953,Detroit,Michigan -1202,Phil Sellers,193,88,Rutgers University,1953,Brooklyn,New York -1203,Lonnie Shelton,203,108,Oregon State University,1955,Bakersfield,California -1204,James Silas,185,81,Stephen F. Austin State University,1949,Tallulah,Louisiana -1205,Ralph Simpson,196,90,Michigan State University,1949,Detroit,Michigan -1206,Al Skinner,190,86,University of Massachusetts Amherst,1952,Mount Vernon,New York -1207,Willie Smith,213,99,Syracuse University,1949,, -1208,Keith Starr,198,86,University of Pittsburgh,1954,Sewickley,Pennsylvania -1209,Earl Tatum,196,83,Marquette University,1953,Mount Vernon,New York -1210,Brian Taylor,188,83,Princeton University,1951,Perth Amboy,New Jersey -1211,Fatty Taylor,183,79,La Salle University,1946,Washington,District of Columbia -1212,Ira Terrell,203,90,Southern Methodist University,1954,Dallas,Texas -1213,Claude Terry,193,88,Stanford University,1950,Salida,California -1214,David Thompson*,193,88,North Carolina State University,1954,Shelby,North Carolina -1215,Monte Towe,170,68,North Carolina State University,1953,Marion,Indiana -1216,Dave Twardzik,185,79,Old Dominion University,1950,Hershey,Pennsylvania -1217,Jan Van,185,79,,1950,, -1218,Andy Walker,193,86,Niagara University,1955,Long Island City,New York -1219,Wally Walker,201,86,University of Virginia,1954,Millersville,Pennsylvania -1220,Lloyd Walton,183,72,Marquette University,1953,Chicago,Illinois -1221,Henry Ward,193,88,Jackson State University,1952,Jackson,Mississippi -1222,Richard Washington,211,99,University of California - Los Angeles,1955,Portland,Oregon -1223,Marvin Webster,216,102,Morgan State University,1952,Baltimore,Maryland -1224,Bob Wilkerson,198,88,Indiana University,1954,Anderson,Indiana -1225,Chuck Williams,183,74,Seattle University,1943,Colorado Springs,Colorado -1226,Chuckie Williams,183,74,Seattle University,1943,Colorado Springs,Colorado -1227,John Williamson,188,83,New Mexico State University,1951,New Haven,Connecticut -1228,Willie Wise,196,95,Drake University,1947,San Francisco,California -1229,Larry Wright,185,72,Grambling State University,1954,Monroe,Louisiana -1230,Tate Armstrong,190,79,Duke University,1955,Moultrie,Georgia -1231,Greg Ballard,201,97,University of Oregon,1955,Los Angeles,California -1232,Kent Benson,208,106,Indiana University,1954,New Castle,Indiana -1233,Otis Birdsong,190,86,University of Houston,1955,Winter Haven,Florida -1234,Phil Bond,188,79,University of Louisville,1954,Louisville,Kentucky -1235,Jim Bostic,201,102,New Mexico State University,1953,Brooklyn,New York -1236,Alonzo Bradley,198,86,Texas Southern University,1953,Utica,Mississippi -1237,Mike Bratz,188,83,Stanford University,1955,Lompoc,California -1238,Wayman Britt,188,83,University of Michigan,1952,Wilson Mills,North Carolina -1239,Kenny Carr,201,99,North Carolina State University,1955,Washington,District of Columbia -1240,Bob Carrington,198,88,Boston College,1953,Brookline,Massachusetts -1241,Wesley Cox,198,97,University of Louisville,1955,Louisville,Kentucky -1242,Charlie Criss,173,74,New Mexico State University,1948,Valhalla,New York -1243,Mark Crow,201,95,Duke University,1954,Edwards AFB,California -1244,Brad Davis,190,81,University of Maryland,1955,Monaca,Pennsylvania -1245,Walter Davis,203,92,Texas A&M University,1931,Beaumont,Texas -1246,Jacky Dorsey,201,104,University of Georgia,1954,Atlanta,Georgia -1247,T.R. Dunn,201,104,,1954,, -1248,James Edwards,213,102,University of Washington,1955,Seattle,Washington -1249,Bo Ellis,196,83,Niagara University,1936,, -1250,Al Fleming,201,97,University of Arizona,1954,Chicago,Illinois -1251,Bayard Forrest,208,106,Grand Canyon University,1954,San Jose,California -1252,Mike Glenn,188,79,Southern Illinois University,1955,Rome,Georgia -1253,Glen Gondrezick,198,98,University of Nevada - Las Vegas,1955,Boulder,Colorado -1254,Rickey Green,183,77,University of Michigan,1954,Chicago,Illinois -1255,Greg Griffin,201,86,Idaho State University,1952,Cleveland,Ohio -1256,Ernie Grunfeld,198,95,University of Tennessee,1955,Satu-Mare,Romania -1257,Joe Hassett,196,81,Providence College,1955,Providence,Rhode Island -1258,Eddie Johnson,203,92,Tennessee State University,1944,Atlanta,Georgia -1259,Larry Johnson,190,92,University of Kentucky,1954,Morganfield,Kentucky -1260,Marques Johnson,201,98,University of California - Los Angeles,1956,Nachitoches,Louisiana -1261,Eddie Jordan,185,77,Rutgers University,1955,Washington,District of Columbia -1262,Bernard King*,201,92,University of Tennessee,1956,Brooklyn,New York -1263,Toby Knight,206,95,University of Notre Dame,1955,Bronx,New York -1264,John Kuester,188,81,University of North Carolina,1955,Richmond,Virginia -1265,Tom LaGarde,208,99,University of North Carolina,1955,Detroit,Michigan -1266,Mark Landsberger,203,97,Arizona State University,1955,Minot,North Dakota -1267,Rich Laurel,198,86,Hofstra University,1954,Philadelphia,Pennsylvania -1268,Ricky Marsh,190,90,Manhattan College,1954,New York,New York -1269,Cedric Maxwell,203,92,University of North Carolina at Charlotte,1955,Kinston,North Carolina -1270,Larry Moffett,203,95,University of Nevada - Las Vegas,1954,Mobile,Alabama -1271,Glenn Mosley,203,88,Seton Hall University,1955,Newark,New Jersey -1272,Norm Nixon,188,77,Duquesne University,1955,Macon,Georgia -1273,Eddie Owens,201,95,University of Nevada - Las Vegas,1953,, -1274,Ben Poquette,206,106,Central Michigan University,1955,Ann Arbor,Michigan -1275,Robert Reid,203,92,St. Mary's University,1955,Atlanta,Georgia -1276,Anthony Roberts,196,83,Oral Roberts University,1955,Chattanooga,Tennessee -1277,Tony Robertson,193,88,West Virginia University,1956,Detroit,Michigan -1278,Tree Rollins,216,106,Clemson University,1955,Winter Haven,Florida -1279,Alvin Scott,201,83,Oral Roberts University,1955,Cleveland,Tennessee -1280,Steve Sheppard,198,97,University of Maryland,1954,New York,New York -1281,Jack Sikma,211,104,Illinois Wesleyan University,1955,Kankakee,Illinois -1282,Scott Sims,185,77,University of Missouri,1955,Kirksville,Missouri -1283,Robert Smith,180,74,University of Nevada - Las Vegas,1955,Los Angeles,California -1284,Phil Walker,190,81,Millersville University of Pennsylvania,1956,Philadelphia,Pennsylvania -1285,Wilson Washington,206,102,Old Dominion University,1955,Norfolk,Virginia -1286,Ray Williams,190,85,University of Minnesota,1954,Mount Vernon,New York -1287,Kim Anderson,201,90,University of Missouri,1955,Sedalia,Missouri -1288,Del Beshore,180,74,California University of Pennslyvania,1956,Mechanicsburg,Pennsylvania -1289,Dennis Boyd,185,79,University of Detroit Mercy,1954,Portsmouth,Virginia -1290,Winford Boynes,198,83,University of San Francisco,1957,Greenville,South Carolina -1291,Ron Brewer,193,81,University of Arkansas,1955,Fort Smith,Arkansas -1292,Greg Bunch,198,86,California State University - Fullerton,1956,San Bernardino,California -1293,Marty Byrnes,201,97,Syracuse University,1956,Syracuse,New York -1294,Ron Carter,196,86,Virginia Military Institute,1956,Pittsburgh,Pennsylvania -1295,Maurice Cheeks,185,81,West Texas A&M University,1956,Chicago,Illinois -1296,Michael Cooper,196,77,University of New Mexico,1956,Los Angeles,California -1297,Wayne Cooper,208,99,University of New Orleans,1956,Milan,Georgia -1298,Dave Corzine,211,113,DePaul University,1956,Arlington Heights,Illinois -1299,Geoff Crompton,211,127,University of North Carolina,1955,Burlington,North Carolina -1300,Harry Davis,201,99,Florida State University,1956,Cleveland,Ohio -1301,Bob Elliott,206,102,University of Arizona,1955,Ann Arbor,Michigan -1302,Ray Epps,198,88,Norfolk State University,1956,Amelia,Virginia -1303,Phil Ford,188,79,University of North Carolina,1956,Rocky Mount,North Carolina -1304,Jack Givens,196,92,University of Kentucky,1956,Lexington,Kentucky -1305,Tommie Green,188,83,Southern University and A&M College,1956,Baton Rouge,Louisiana -1306,Lars Hansen,208,102,University of Washington,1954,Copenhagen,Denmark -1307,James Hardy,203,99,University of San Francisco,1956,Knoxville,Alabama -1308,Keith Herron,198,88,Villanova University,1956,Memphis,Tennessee -1309,Kenny Higgs,183,81,Louisiana State University,1955,Owensboro,Kentucky -1310,Essie Hollis,198,88,St. Bonaventure University,1955,Erie,Pennsylvania -1311,Otis Howard,201,99,Austin Peay State University,1956,Oak Ridge,Tennessee -1312,Clemon Johnson,208,108,Florida Agricultural and Mechanical University,1956,Monticello,Florida -1313,Jeff Judkins,198,83,University of Utah,1956,Salt Lake City,Utah -1314,Joel Kramer,201,92,San Diego State University,1955,San Diego,California -1315,Butch Lee,183,83,Marquette University,1956,Santurce,Puerto Rico -1316,John Long,196,88,University of Detroit Mercy,1956,Romulus,Michigan -1317,Billy McKinney,183,72,Northwestern University,1955,Waukegan,Illinois -1318,Mike Mitchell,201,97,Auburn University,1956,Atlanta,Georgia -1319,John Olive,201,95,Villanova University,1955,Philadelphia,Pennsylvania -1320,Roger Phegley,198,92,Bradley University,1956,East Peoria,Illinois -1321,Stan Pietkiewicz,196,90,Auburn University,1956,Huntsville,Alabama -1322,Wayne Radford,190,92,Indiana University,1956,Indianapolis,Indiana -1323,Marlon Redmond,198,85,University of San Francisco,1955,San Francisco,California -1324,Micheal Ray,198,85,,1955,, -1325,Rick Robey,211,104,University of Kentucky,1956,Coral Gables,Florida -1326,Jackie Robinson,198,95,University of Nevada - Las Vegas,1955,Los Angeles,California -1327,John Rudd,201,104,McNeese State University,1955,DeRidder,Louisiana -1328,Frankie Sanders,198,90,Southern University and A&M College,1957,Dayton,Ohio -1329,Purvis Short,201,95,Jackson State University,1957,Hattiesburg,Mississippi -1330,Sam Smith,201,104,Kentucky Wesleyan College,1944,Hazard,Kentucky -1331,Reggie Theus,201,86,University of Nevada - Las Vegas,1957,Inglewood,California -1332,Mychal Thompson,208,102,University of Minnesota,1955,Nassau,Bahamas -1333,Raymond Townsend,190,79,University of California - Los Angeles,1955,San Jose,California -1334,Terry Tyler,201,97,University of Detroit Mercy,1956,Detroit,Michigan -1335,Andre Wakefield,190,79,Loyola University of Chicago,1955,Chicago,Illinois -1336,Jerome Whitehead,208,99,Marquette University,1956,Waukegan,Illinois -1337,Freeman Williams,193,86,Portland State University,1956,Los Angeles,California -1338,Rick Wilson,196,90,University of Louisville,1956,Louisville,Kentucky -1339,James Bailey,206,99,Rutgers University,1957,Dublin,Georgia -1340,Billy Ray,206,99,,1957,, -1341,Larry Bird*,206,99,Indiana State University,1956,West Baden,Indiana -1342,Lawrence Boston,203,102,University of Maryland,1956,Cleveland,Ohio -1343,Dudley Bradley,198,88,University of North Carolina,1957,Baltimore,Maryland -1344,Bill Cartwright,216,111,University of San Francisco,1957,Lodi,California -1345,Jeff Cook,208,97,Idaho State University,1956,West Covina,California -1346,Hollis Copeland,198,81,Rutgers University,1955,Trenton,New Jersey -1347,John Coughran,201,102,University of California,1951,Pittsburg,California -1348,Terry Crosby,193,88,University of Tennessee,1957,Toledo,Ohio -1349,Pat Cummings,206,104,University of Cincinnati,1956,Johnstown,Pennsylvania -1350,Paul Dawkins,196,86,Northern Illinois University,1957,Saginaw,Michigan -1351,Greg Deane,193,86,University of Utah,1957,Tulare,California -1352,Larry Demic,206,102,University of Arizona,1957,Gary,Indiana -1353,Terry Duerod,188,81,University of Detroit Mercy,1956,Royal Oak,Michigan -1354,Earl Evans,203,91,University of Nevada - Las Vegas,1955,Port Arthur,Texas -1355,Mike Evans,185,77,Kansas State University,1955,Goldsboro,North Carolina -1356,Gary Garland,193,81,DePaul University,1957,East Orange,New Jersey -1357,Dave Greenwood,206,100,University of California - Los Angeles,1957,Lynwood,California -1358,Roy Hamilton,188,81,University of California - Los Angeles,1957,Los Angeles,California -1359,Gerald Henderson,188,79,Virginia Commonwealth University,1956,Richmond,Virginia -1360,Johnny High,190,83,University of Nevada - Reno,1957,Birmingham,Alabama -1361,Brad Holland,190,81,University of California - Los Angeles,1956,Billings,Montana -1362,Phil Hubbard,203,97,University of Michigan,1956,Canton,Ohio -1363,Geoff Huston,188,79,Texas Tech University,1957,Brooklyn,New York -1364,Abdul Jeelani,203,95,University of Wisconsin-Parkside,1954,Bells,Tennessee -1365,Cheese Johnson,183,77,University of California,1949,Corpus Christi,Texas -1366,Magic Johnson*,201,98,University of California - Los Angeles,1956,Nachitoches,Louisiana -1367,Vinnie Johnson,188,90,Baylor University,1956,Brooklyn,New York -1368,Major Jones,206,102,Albany State University,1953,McGhee,Arkansas -1369,Greg Kelser,201,86,Michigan State University,1957,Panama City,Florida -1370,Irv Kiffin,206,102,Oklahoma Baptist University,1951,New York,New York -1371,Carl Kilpatrick,208,104,University of Louisiana at Monroe,1956,Bastrop,Louisiana -1372,Reggie King,198,102,University of Alabama,1957,Birmingham,Alabama -1373,Arvid Kramer,206,99,Augustana College (SD),1956,Fulda,Minnesota -1374,Allen Leavell,185,77,Oklahoma City University,1957,Muncie,Indiana -1375,Ollie Mack,190,83,East Carolina University,1957,New York,New York -1376,Steve Malovic,208,104,San Diego State University,1956,Cleveland,Ohio -1377,Paul Mokeski,213,113,University of Kansas,1957,Spokane,Washington -1378,Sidney Moncrief,190,81,University of Arkansas,1957,Little Rock,Arkansas -1379,Calvin Natt,198,99,University of Louisiana at Monroe,1957,Monroe,Louisiana -1380,Sylvester Norris,211,99,Jackson State University,1957,Jackson,Mississippi -1381,Wiley Peck,201,99,Mississippi State University,1957,Montgomery,Alabama -1382,Sam Pellom,206,102,University at Buffalo - State University of New York,1951,Wilmington,North Carolina -1383,Clint Richardson,190,88,Seattle University,1956,Seattle,Washington -1384,Cliff Robinson,206,99,University of Southern California,1960,Oakland,California -1385,Jim Spanarkel,196,86,Duke University,1957,Jersey City,New Jersey -1386,Bernard Toone,206,95,Marquette University,1956,Yonkers,New York -1387,Duck Williams,188,81,University of Notre Dame,1956,Demopolis,Alabama -1388,Sly Williams,201,95,University of Rhode Island,1958,New Haven,Connecticut -1389,Bubba Wilson,190,79,Western Carolina University,1955,Gastonia,North Carolina -1390,Tony Zeno,203,95,Arizona State University,1957,New Orleans,Louisiana -1391,Darrell Allums,206,99,University of California - Los Angeles,1958,Los Angeles,California -1392,Norman Black,196,83,Saint Joseph's University,1957,Baltimore,Maryland -1393,Dave Britton,193,81,Texas A&M University,1958,New York,New York -1394,Michael Brooks,201,99,La Salle University,1958,Philadelphia,Pennsylvania -1395,Lewis Brown,190,86,University of Wyoming,1919,, -1396,Rickey Brown,208,97,Mississippi State University,1958,Madison County,Mississippi -1397,Joe Barry,193,88,Georgia Institute of Technology,1969,Oakland,California -1398,Butch Carter,196,81,Indiana University,1958,Springfield,Ohio -1399,Reggie Carter,190,79,St. John's University,1957,New York,New York -1400,Art Collins,193,83,St. Thomas University,1954,Sandersville,Georgia -1401,Don Collins,198,81,Illinois State University,1951,Christopher,Illinois -1402,Darwin Cook,190,83,University of Portland,1958,Los Angeles,California -1403,Earl Cureton,206,95,University of Detroit Mercy,1957,Detroit,Michigan -1404,Monti Davis,201,92,Tennessee State University,1958,Warren,Ohio -1405,James Donaldson,218,124,Washington State University,1957,Heacham,United Kingdom -1406,Larry Drew,185,77,University of Missouri,1958,Kansas City,Kansas -1407,Ralph Drollinger,218,113,University of California - Los Angeles,1954,La Mesa,California -1408,John Duren,190,88,Georgetown University,1958,Washington,District of Columbia -1409,Tony Fuller,193,81,Pepperdine University,1958,Detroit,Michigan -1410,Calvin Garrett,201,86,Oral Roberts University,1956,Parsons,Tennessee -1411,Mike Gminski,211,113,Duke University,1959,Monroe,Connecticut -1412,Darrell Griffith,193,86,University of Louisville,1958,Louisville,Kentucky -1413,Bill Hanzlik,201,83,University of Notre Dame,1957,Middletown,Ohio -1414,Alan Hardy,201,88,University of Michigan,1957,Detroit,Michigan -1415,Mike Harper,208,88,North Park University,1957,Chicago,Illinois -1416,Cedrick Hordges,203,99,University of South Carolina,1957,Montgomery,Alabama -1417,Tony Jackson,193,90,St. John's University,1942,Brooklyn,New York -1418,Lee Johnson,211,92,East Texas State University,1957,Plummerville,Arkansas -1419,Reggie Johnson,206,92,University of Tennessee,1957,Atlanta,Georgia -1420,Edgar Jones,208,102,University of Nevada - Reno,1956,Fort Rucker,Alabama -1421,Walter Jordan,201,89,Purdue University,1956,Perry,Alabama -1422,Clarence Kea,198,98,Lamar University,1959,Wilmington,North Carolina -1423,Chad Kinch,193,86,University of North Carolina at Charlotte,1958,Perth Amboy,New Jersey -1424,Wayne Kreklow,193,79,Drake University,1957,Neenah,Wisconsin -1425,Bill Laimbeer,211,111,University of Notre Dame,1957,Boston,Massachusetts -1426,Edmund Lawrence,213,103,McNeese State University,1952,Lake Charles,Louisiana -1427,Ronnie Lester,188,79,University of Iowa,1959,Canton,Mississippi -1428,Kyle Macy,190,79,University of Kentucky,1957,Fort Wayne,Indiana -1429,Rick Mahorn,208,108,Hampton University,1958,Hartford,Connecticut -1430,Wes Matthews,185,77,University of Wisconsin,1959,Sarasota,Florida -1431,Bill Mayfield,201,92,University of Iowa,1957,Detroit,Michigan -1432,Keith McCord,201,95,University of Alabama at Birmingham,1957,Birmingham,Alabama -1433,Kevin McHale*,208,95,University of Minnesota,1957,Hibbing,Minnesota -1434,Dick Miller,198,97,University of Toledo,1958,Milwaukee,Wisconsin -1435,Johnny Moore,185,79,University of Texas at Austin,1958,Altoona,Pennsylvania -1436,Lowes Moore,185,77,West Virginia University,1957,Plymouth,South Carolina -1437,Kenny Natt,190,83,University of Louisiana at Monroe,1958,Monroe,Louisiana -1438,Carl Nicks,185,79,Indiana State University,1958,Chicago,Illinois -1439,Mike Niles,198,102,California State University - Fullerton,1955,Los Angeles,California -1440,Mike O'Koren,201,93,University of North Carolina,1958,Jersey City,New Jersey -1441,Jawann Oldham,213,97,Seattle University,1957,Chicago,Illinois -1442,Louis Orr,203,79,Syracuse University,1958,Cincinnati,Ohio -1443,Myles Patrick,203,99,Auburn University,1954,Macon,Georgia -1444,Tony Price,198,86,University of Pennsylvania,1957,Bronx,New York -1445,Wally Rank,198,99,San Jose State University,1958,Fort Ord,California -1446,Kelvin Ransey,185,77,Ohio State University,1958,Toledo,Ohio -1447,James Ray,203,97,Jacksonville University,1957,New Orleans,Louisiana -1448,Billy Reid,196,86,University of San Francisco,1957,New York,New York -1449,Wayne Robinson,203,98,Virginia Polytechnic Institute and State University,1958,Greensboro,North Carolina -1450,Lorenzo Romar,185,79,University of Washington,1958,South Gate,California -1451,DeWayne Scales,203,94,Louisiana State University,1958,Dallas,Texas -1452,Craig Shelton,201,95,Georgetown University,1957,Washington,District of Columbia -1453,Jerry Sichting,185,76,Purdue University,1956,Martinsville,Indiana -1454,Larry Smith,203,97,Alcorn State University,1958,Rolling Fork,Mississippi -1455,Rory Sparrow,188,79,Villanova University,1958,Suffolk,Virginia -1456,John Stroud,201,97,University of Mississippi,1957,New Albany,Mississippi -1457,Carlos Terry,196,95,Winston-Salem State University,1956,Lexington,North Carolina -1458,Andrew Toney,190,80,University of Louisiana at Lafayette,1957,Birmingham,Alabama -1459,Ronnie Valentine,201,95,Old Dominion University,1957,Norfolk,Virginia -1460,Kiki Vandeweghe,203,99,University of California - Los Angeles,1958,Wiesbaden,Germany -1461,Brett Vroman,213,99,University of Nevada - Las Vegas,1955,Hollywood,California -1462,Hawkeye Whitney,201,104,Iowa State University,1939,Brooklyn,New York -1463,Michael Wiley,206,90,California State University - Long Beach,1957,Long Beach,California -1464,James Wilkes,198,86,University of California - Los Angeles,1953,Berkeley,California -1465,Jeff Wilkins,211,104,Illinois State University,1955,Chicago,Illinois -1466,Mike Woodson,196,88,Indiana University,1958,Indianapolis,Indiana -1467,Sam Worthen,196,88,Marquette University,1958,Brooklyn,New York -1468,Mark Aguirre,198,105,DePaul University,1959,Chicago,Illinois -1469,Danny Ainge,193,79,Brigham Young University,1959,Eugene,Oregon -1470,Carl Bailey,213,95,Tuskegee University,1958,Birmingham,Alabama -1471,Gene Banks,201,97,Duke University,1959,Philadelphia,Pennsylvania -1472,Rolando Blackman,198,86,Kansas State University,1959,Panama City,Panama -1473,Ray Blume,193,83,Oregon State University,1958,Valdosta,Georgia -1474,Alex Bradley,198,86,Texas Southern University,1953,Utica,Mississippi -1475,Charles Bradley,196,97,University of Wyoming,1959,Havre De Grace,Maryland -1476,Brad Branson,208,99,Southern Methodist University,1958,Harvey,Illinois -1477,Jim Brogan,193,83,West Virginia Wesleyan College,1958,Ardmore,Pennsylvania -1478,Roger Burkman,196,79,University of Louisville,1958,Indianapolis,Indiana -1479,David Burns,188,81,Saint Louis University,1958,Dallas,Texas -1480,Bobby Cattage,206,113,Auburn University,1958,Huntsville,Alabama -1481,Tom Chambers,208,99,University of Utah,1959,Ogden,Utah -1482,Joe Cooper,208,104,University of Colorado,1957,Houston,Texas -1483,Charles Davis,188,72,Wake Forest University,1949,New York,New York -1484,Kenny Dennard,203,99,Duke University,1958,King,North Carolina -1485,Mickey Dillard,190,77,Florida State University,1958,Hollywood,Florida -1486,John Douglas,188,77,University of Kansas,1956,Town Creek,Alabama -1487,Craig Dykema,203,86,California State University - Long Beach,1959,Lakewood,California -1488,Franklin Edwards,185,77,Cleveland State University,1959,New York,New York -1489,Petur Gudmundsson,218,117,University of Washington,1958,Reykjavik,Iceland -1490,Glenn Hagan,183,77,St. Bonaventure University,1955,Sanford,Florida -1491,Steve Hayes,213,92,Idaho State University,1955,American Falls,Idaho -1492,Tracy Jackson,198,92,University of Notre Dame,1959,Rockville,Maryland -1493,Clay Johnson,208,108,Florida Agricultural and Mechanical University,1956,Monticello,Florida -1494,Frank Johnson,185,83,Wake Forest University,1958,Weirsdale,Florida -1495,Steve Johnson,203,99,Murray State University,1944,Clairton,Pennsylvania -1496,Albert King,198,86,University of Maryland,1959,Brooklyn,New York -1497,Jeff Lamp,198,88,University of Virginia,1959,Minneapolis,Minnesota -1498,Rock Lee,193,87,University of Oregon,1952,Boston,Massachusetts -1499,Alton Lister,213,108,Arizona State University,1958,Dallas,Texas -1500,Lewis Lloyd,198,92,Drake University,1959,Philadelphia,Pennsylvania -1501,Kevin Loder,198,92,Alabama State University,1959,Cassopolis,Michigan -1502,Rudy Macklin,201,92,Louisiana State University,1958,Louisville,Kentucky -1503,John McCullough,193,86,University of Oklahoma,1956,Lima,Ohio -1504,Hank McDowell,206,97,University of Memphis,1959,Memphis,Tennessee -1505,Mike McGee,196,86,University of Michigan,1959,Tyler,Texas -1506,Kevin McKenna,196,88,Creighton University,1959,St. Paul,Minnesota -1507,Larry Nance,208,92,Clemson University,1959,Anderson,South Carolina -1508,Kurt Nimphius,208,98,Arizona State University,1958,Milwaukee,Wisconsin -1509,Mark Radford,193,86,Oregon State University,1959,Tacoma,Washington -1510,Ed Rains,201,86,University of South Alabama,1956,Ocala,Florida -1511,Kurt Rambis,203,96,Santa Clara University,1958,Cupertino,California -1512,Jeff Ruland,208,108,Iona College,1958,Bayshore,New York -1513,Danny Schayes,211,106,Syracuse University,1959,Syracuse,New York -1514,Jim Smith,206,102,Ohio State University,1958,Cleveland,Ohio -1515,Larry Spriggs,201,104,Howard University,1959,Cheverly,Maryland -1516,Isiah Thomas*,185,81,Indiana University,1961,Chicago,Illinois -1517,Ray Tolbert,206,102,Indiana University,1958,Anderson,Indiana -1518,Kelly Tripucka,198,99,University of Notre Dame,1959,Glen Ridge,New Jersey -1519,Elston Turner,196,86,University of Mississippi,1959,Knoxville,Tennessee -1520,Darnell Valentine,185,83,University of Kansas,1959,Chicago,Illinois -1521,Pete Verhoeven,206,97,California State University - Fresno,1959,Hanford,California -1522,Jay Vincent,201,99,Michigan State University,1959,Kalamazoo,Michigan -1523,Danny Vranes,201,95,University of Utah,1958,Salt Lake City,Utah -1524,Buck Williams,203,97,University of Maryland,1960,Rocky Mount,North Carolina -1525,Herb Williams,208,109,Ohio State University,1958,Columbus,Ohio -1526,Garry Witts,201,86,College of the Holy Cross,1959,Elizabeth,New Jersey -1527,Al Wood,198,87,University of North Carolina,1958,Gray,Georgia -1528,Howard Wood,201,106,University of Tennessee,1959,Southhampton,New York -1529,Orlando Woolridge,206,97,University of Notre Dame,1959,Bernice,Louisiana -1530,Rich Yonakor,206,99,University of North Carolina,1958,Euclid,Ohio -1531,Dwight Anderson,190,83,University of Southern California,1960,Dayton,Ohio -1532,J.J. Anderson,190,83,,1960,, -1533,Richard Anderson,208,108,University of California - Santa Barbara,1960,San Pedro,California -1534,John Bagley,183,83,Boston College,1960,Bridgeport,Connecticut -1535,Dave Batton,208,108,University of Notre Dame,1956,Baltimore,Maryland -1536,Lester Conner,193,81,Oregon State University,1959,Memphis,Tennessee -1537,Chubby Cox,188,81,University of San Francisco,1955,Philadelphia,Pennsylvania -1538,Terry Cummings,206,99,DePaul University,1961,Chicago,Illinois -1539,Quintin Dailey,190,81,University of San Francisco,1961,Baltimore,Maryland -1540,Mark Eaton,224,124,University of California - Los Angeles,1957,Westminster,California -1541,Jerry Eaves,193,81,University of Louisville,1959,Louisville,Kentucky -1542,Keith Edmonson,196,88,Purdue University,1960,Gulfport,Mississippi -1543,Chris Engler,211,111,University of Wyoming,1959,Stillwater,Minnesota -1544,Bruce Flowers,203,102,University of Notre Dame,1957,Rochester,New York -1545,Sleepy Floyd,190,77,Georgetown University,1960,Gastonia,North Carolina -1546,Bill Garnett,208,99,University of Portland,1940,East St. Louis,Illinois -1547,John Greig,201,97,University of Oregon,1961,Sacramento,California -1548,Scott Hastings,208,106,University of Arkansas,1960,Independence,Kansas -1549,Rod Higgins,201,90,California State University - Fresno,1960,Monroe,Louisiana -1550,Craig Hodges,188,86,California State University - Long Beach,1960,Park Forest,Illinois -1551,Marc Iavaroni,203,95,University of Virginia,1956,Jamaica,New York -1552,Jim Johnstone,211,111,Wake Forest University,1960,New Canaan,Connecticut -1553,Hutch Jones,203,86,Vanderbilt University,1959,Buffalo,New York -1554,Clark Kellogg,201,102,Ohio State University,1961,Cleveland,Ohio -1555,Joe Kopicki,206,108,University of Detroit Mercy,1960,Warren,Michigan -1556,Fat Lever,190,77,Arizona State University,1960,Pine Bluff,Arkansas -1557,Cliff Levingston,203,95,Wichita State University,1961,San Diego,California -1558,Steve Lingenfelter,206,102,South Dakota State University,1958,Eau Claire,Wisconsin -1559,Dave Magley,203,91,University of Kansas,1959,South Bend,Indiana -1560,Mark McNamara,211,106,University of California,1959,San Jose,California -1561,Guy Morgan,203,92,Wake Forest University,1960,Virginia Beach,Virginia -1562,Ed Nealy,201,107,Kansas State University,1960,Pittsburg,Kansas -1563,Chuck Nevitt,226,98,North Carolina State University,1959,Cortez,Colorado -1564,Audie Norris,206,104,Jackson State University,1960,Jackson,Mississippi -1565,Eddie Phillips,201,102,University of Alabama,1961,Birmingham,Alabama -1566,Ricky Pierce,193,92,Rice University,1959,Dallas,Texas -1567,Charles Pittman,203,99,University of Maryland,1958,Rocky Mount,North Carolina -1568,Paul Pressey,196,83,University of Tulsa,1958,Richmond,Virginia -1569,Oliver Robinson,193,81,University of Alabama at Birmingham,1960,Birmingham,Alabama -1570,Walker Russell,196,88,Western Michigan University,1960,Pontiac,Michigan -1571,Mike Sanders,198,95,University of California - Los Angeles,1960,Vidalia,Louisiana -1572,Russ Schoene,208,95,University of Tennessee at Chattanooga,1960,Trenton,Illinois -1573,Ed Sherod,188,77,Virginia Commonwealth University,1959,Richmond,Virginia -1574,Jose Slaughter,196,92,University of Portland,1960,Los Angeles,California -1575,Derek Smith,190,81,University of Utah,1920,, -1576,Brook Steppe,196,88,Georgia Institute of Technology,1959,Chapel Hill,North Carolina -1577,Jeff Taylor,193,79,Texas Tech University,1960,Blytheville,Arkansas -1578,Vince Taylor,196,81,Duke University,1960,Lexington,Kentucky -1579,Terry Teagle,196,88,Baylor University,1960,Broaddus,Texas -1580,David Thirdkill,201,88,Bradley University,1960,St. Louis,Missouri -1581,Corny Thompson,203,102,University of Connecticut,1960,Middletown,Connecticut -1582,LaSalle Thompson,208,111,University of Texas at Austin,1961,Cincinnati,Ohio -1583,Darren Tillis,211,97,Cleveland State University,1960,Dallas,Texas -1584,Linton Townes,201,86,James Madison University,1959,Richmond,Virginia -1585,Trent Tucker,196,87,University of Minnesota,1959,Tarboro,North Carolina -1586,Bryan Warrick,196,88,Saint Joseph's University,1959,Moses Lake,Washington -1587,Rory White,203,95,University of South Alabama,1959,Tuskegee,Alabama -1588,Dominique Wilkins*,201,90,University of Georgia,1960,Paris,France -1589,Rickey Williams,185,79,California State University - Long Beach,1957,Buffalo,New York -1590,Rob Williams,190,85,West Virginia University,1944,Weirton,West Virginia -1591,James Worthy*,206,102,University of North Carolina,1961,Gastonia,North Carolina -1592,Jim Zoet,216,108,Kent State University,1953,Uxbridge,Canada -1593,Ken Austin,206,92,Rice University,1961,Los Angeles,California -1594,Thurl Bailey,211,97,North Carolina State University,1961,Washington,District of Columbia -1595,Randy Breuer,221,104,University of Minnesota,1960,Lake City,Minnesota -1596,Wallace Bryant,213,111,University of San Francisco,1959,Madrid,Spain -1597,Howard Carter,196,97,Louisiana State University,1961,Baton Rouge,Louisiana -1598,Carlos Clark,193,95,University of Mississippi,1960,Somerville,Tennessee -1599,Leroy Combs,203,95,Oklahoma State University,1961,Oklahoma City,Oklahoma -1600,Russell Cross,208,97,Purdue University,1961,Chicago,Illinois -1601,Darren Daye,203,99,University of California - Los Angeles,1960,Des Moines,Iowa -1602,Clyde Drexler*,201,95,University of Houston,1962,New Orleans,Louisiana -1603,Craig Ehlo,198,81,Washington State University,1961,Lubbock,Texas -1604,Dale Ellis,201,92,University of Tennessee,1960,Marietta,Georgia -1605,Rod Foster,185,72,University of California - Los Angeles,1960,Birmingham,Alabama -1606,John Garris,203,92,Boston College,1959,Bridgeport,Connecticut -1607,Mike Gibson,208,92,University of South Carolina Upstate,1960,Williamsburg County,South Carolina -1608,Stewart Granger,190,86,Villanova University,1961,Montreal,Canada -1609,Sidney Green,188,83,Duquesne University,1933,New York,New York -1610,Bob Hansen,198,86,University of Iowa,1961,Des Moines,Iowa -1611,Derek Harper,193,83,University of Illinois at Urbana-Champaign,1961,Elberton,Georgia -1612,Roy Hinson,206,95,Rutgers University,1961,Trenton,New Jersey -1613,Charles Jones,206,97,Albany State University,1957,McGehee,Arkansas -1614,Mark Jones,206,102,Albany State University,1953,McGhee,Arkansas -1615,Greg Kite,211,113,Brigham Young University,1961,Houston,Texas -1616,Bruce Kuczenski,208,104,University of Connecticut,1961,Bristol,Connecticut -1617,Darrell Lockhart,206,111,Auburn University,1960,Thomaston,Georgia -1618,Sidney Lowe,183,88,North Carolina State University,1960,Washington,District of Columbia -1619,Jeff Malone,193,92,Mississippi State University,1961,Mobile,Alabama -1620,Pace Mannion,201,86,University of Utah,1960,Salt Lake City,Utah -1621,Rodney McCray,201,99,University of Louisville,1961,Mount Vernon,New York -1622,Scooter McCray,206,97,University of Louisville,1960,Mount Vernon,New York -1623,Larry Micheaux,206,99,University of Houston,1960,Houston,Texas -1624,Bob Miller,208,104,University of Cincinnati,1956,Louisville,Kentucky -1625,John Paxson,188,83,University of Notre Dame,1960,Dayton,Ohio -1626,John Pinone,203,104,Villanova University,1961,Hartford,Connecticut -1627,Tom Piotrowski,216,108,La Salle University,1960,West Chester,Pennsylvania -1628,Leo Rautins,203,97,Syracuse University,1960,Toronto,Canada -1629,Doc Rivers,193,83,Marquette University,1961,Chicago,Illinois -1630,Fred Roberts,208,98,Brigham Young University,1960,Provo,Utah -1631,Ralph Sampson*,224,103,University of Virginia,1960,Harrisonburg,Virginia -1632,Byron Scott,190,88,Arizona State University,1961,Ogden,Utah -1633,Steve Stipanovich,211,111,University of Missouri,1960,St. Louis,Missouri -1634,Jon Sundvold,188,77,University of Missouri,1961,Sioux Falls,South Dakota -1635,Dane Suttle,190,86,Pepperdine University,1961,Los Angeles,California -1636,Jim Thomas,190,86,Indiana University,1960,Lakeland,Florida -1637,Paul Thompson,198,95,Tulane University,1961,Smyrna,Tennessee -1638,Sedale Threatt,188,79,West Virginia University Institute of Technology,1961,Atlanta,Georgia -1639,Granville Waiters,211,102,Ohio State University,1961,Columbus,Ohio -1640,Darrell Walker,193,81,University of Arkansas,1961,Chicago,Illinois -1641,Brant Weidner,206,104,College of William & Mary,1960,Orefield,Pennsylvania -1642,Mark West,208,104,Old Dominion University,1960,Petersburg,Virginia -1643,Ennis Whatley,190,80,University of Alabama,1962,Birmingham,Alabama -1644,Mitchell Wiggins,193,83,Florida State University,1959,Lenoir County,North Carolina -1645,Kevin Williams,188,79,St. John's University,1961,New York,New York -1646,Michael Wilson,193,79,Marquette University,1959,Memphis,Tennessee -1647,Randy Wittman,198,95,Indiana University,1959,Indianapolis,Indiana -1648,Chuck Aleksinas,211,117,University of Connecticut,1959,Litchfield,Connecticut -1649,Ron Anderson,201,97,California State University - Fresno,1958,Chicago,Illinois -1650,Ken Bannister,206,106,Saint Augustine's College,1960,Baltimore,Maryland -1651,Charles Barkley*,198,114,Auburn University,1963,Leeds,Alabama -1652,Cory Blackwell,198,95,University of Wisconsin,1963,Chicago,Illinois -1653,Sam Bowie,216,106,University of Kentucky,1961,Lebanon,Pennsylvania -1654,Frank Brickowski,206,108,Pennsylvania State University,1959,Bayville,New York -1655,Tony Brown,198,83,University of Arkansas,1960,Chicago,Illinois -1656,Steve Burtt,188,83,Iona College,1962,New York,New York -1657,Michael Cage,206,101,San Diego State University,1962,West Memphis,Arkansas -1658,Tony Campbell,201,97,Ohio State University,1962,Teaneck,New Jersey -1659,Rick Carlisle,196,95,University of Virginia,1959,Ogdensburg,New York -1660,Antoine Carr,206,102,Wichita State University,1961,Oklahoma City,Oklahoma -1661,Ron Cavenall,216,104,Texas Southern University,1959,Beaumont,Texas -1662,Steve Colter,190,74,New Mexico State University,1962,Phoenix,Arizona -1663,Devin Durrant,201,90,Brigham Young University,1960,Provo,Utah -1664,Kenton Edelin,203,92,University of Virginia,1962,Heidelburg,Germany -1665,Kenny Fields,196,99,University of California - Los Angeles,1962,Iowa City,Iowa -1666,Vern Fleming,196,83,University of Georgia,1962,New York,New York -1667,Lancaster Gordon,190,83,University of Louisville,1962,Jackson,Mississippi -1668,Butch Graves,190,90,Yale University,1962,Scarsdale,New York -1669,Stuart Gray,213,106,University of California - Los Angeles,1963,Panama Canal Zone,Panama -1670,Mike Holton,193,83,University of California - Los Angeles,1961,Seattle,Washington -1671,Jay Humphries,190,83,University of Colorado,1962,Los Angeles,California -1672,Ralph Jackson,188,86,University of California - Los Angeles,1962,Los Angeles,California -1673,Earl Jones,213,95,University of the District of Columbia,1961,Oak Hill,West Virginia -1674,Ozell Jones,211,106,California State University - Fullerton,1960,Long Beach,California -1675,Michael Jordan*,198,88,University of North Carolina,1963,Brooklyn,New York -1676,Jerome Kersey,201,97,Longwood University,1962,Clarksville,Virginia -1677,Tim McCormick,211,108,University of Michigan,1962,Detroit,Michigan -1678,Jay Murphy,206,99,Boston College,1962,Meriden,Connecticut -1679,Hakeem Olajuwon*,213,115,University of Houston,1963,Lagos,Nigeria -1680,Sam Perkins,206,106,University of North Carolina,1961,Brooklyn,New York -1681,Jim Petersen,208,106,University of Minnesota,1962,Minneapolis,Minnesota -1682,Gary Plummer,206,97,Boston University,1962,Highland Park,Michigan -1683,David Pope,201,99,Norfolk State University,1962,Newport News,Virginia -1684,Alvin Robertson,190,83,University of Arkansas,1962,Barberton,Ohio -1685,Wayne Sappleton,206,97,Loyola University of Chicago,1960,Kingston,Jamaica -1686,Tom Scheffler,211,108,Purdue University,1954,St. Joseph,Michigan -1687,John Schweitz,198,95,University of Richmond,1960,Waterloo,New York -1688,Tom Sewell,196,83,Lamar University,1962,Pensacola,Florida -1689,Charlie Sitton,203,95,Oregon State University,1962,McMinnville,Oregon -1690,Tom Sluby,193,90,University of Notre Dame,1962,Washington,District of Columbia -1691,Terence Stansbury,196,77,Temple University,1961,Wilmington,Delaware -1692,John Stockton*,185,77,Gonzaga University,1962,Spokane,Washington -1693,Peter Thibeaux,201,95,Saint Mary's College of California,1961,Los Angeles,California -1694,Bernard Thompson,198,95,California State University - Fresno,1962,Phoenix,Arizona -1695,Otis Thorpe,206,102,Providence College,1962,Boynton Beach,Florida -1696,Jeff Turner,206,104,Vanderbilt University,1962,Bangor,Maine -1697,Melvin Turpin,211,108,University of Kentucky,1960,Lexington,Kentucky -1698,Willie White,190,88,University of Tennessee at Chattanooga,1962,Memphis,Tennessee -1699,Eddie Lee,190,88,,1962,, -1700,Dale Wilkinson,208,99,Idaho State University,1960,Pocatello,Idaho -1701,Guy Williams,188,79,University of Southern California,1953,Mount Vernon,New York -1702,Kevin Willis,188,79,St. John's University,1961,New York,New York -1703,Othell Wilson,183,86,University of Virginia,1961,Alexandria,Virginia -1704,Leon Wood,190,83,California State University - Fullerton,1962,Columbia,South Carolina -1705,Danny Young,190,79,Wake Forest University,1962,Raleigh,North Carolina -1706,Michael Young,201,99,University of Houston,1961,Houston,Texas -1707,Michael Adams,178,73,Boston College,1963,Hartford,Connecticut -1708,John Battle,188,79,Rutgers University,1962,Washington,District of Columbia -1709,Benoit Benjamin,213,113,Creighton University,1964,Monroe,Louisiana -1710,Uwe Blab,216,114,Indiana University,1962,Munich,Germany -1711,Manute Bol,231,90,University of Bridgeport,1962,Gogrial,South Sudan -1712,Mike Brittain,213,106,University of South Carolina,1963,Clearwater,Florida -1713,Terry Catledge,203,99,University of South Alabama,1963,Houston,Mississippi -1714,Lorenzo Charles,201,102,North Carolina State University,1963,Brooklyn,New York -1715,Fred Cofield,190,86,Eastern Michigan University,1962,Ypsilanti,Michigan -1716,David Cooke,203,104,Saint Mary's College of California,1963,Sacramento,California -1717,Tyrone Corbin,198,95,DePaul University,1962,Columbia,South Carolina -1718,Ron Crevier,213,106,Boston College,1958,Montreal,Canada -1719,Jeff Cross,208,108,University of Maine,1961,Chicago,Illinois -1720,Joe Dumars*,190,86,McNeese State University,1963,Shreveport,Louisiana -1721,Patrick Ewing*,213,108,Georgetown University,1962,Kingston,Jamaica -1722,Georgi Glouchkov,203,106,,1960,Triavna,Bulgaria -1723,A.C. Green,203,106,,1960,, -1724,Ken Green,203,97,University of Texas-Pan American,1959,Newman,Georgia -1725,Kenny Green,203,97,University of Texas-Pan American,1959,Newman,Georgia -1726,Claude Gregory,203,92,University of Wisconsin,1958,Washington,District of Columbia -1727,Steve Harris,196,88,University of Tulsa,1963,Kansas City,Missouri -1728,Jerome Henderson,211,104,University of New Mexico,1959,Los Angeles,California -1729,Carl Henry,198,92,University of Kansas,1960,Hollis,Oklahoma -1730,Alfredrick Hughes,198,92,,1960,, -1731,Ken Johnson,203,108,Michigan State University,1962,Tuskegee,Alabama -1732,Yvon Joseph,211,111,Georgia Institute of Technology,1957,Cap-Haitian,Haiti -1733,Harold Keeling,193,83,Santa Clara University,1963,New Orleans,Louisiana -1734,Joe Kleine,211,115,University of Arkansas,1962,Colorado Springs,Colorado -1735,Jon Koncak,213,113,Southern Methodist University,1963,Cedar Rapids,Iowa -1736,Keith Lee,208,97,University of Memphis,1962,West Memphis,Arkansas -1737,Karl Malone*,206,113,Louisiana Tech University,1963,Summerfield,Louisiana -1738,Bill Martin,201,92,Georgetown University,1962,Washington,District of Columbia -1739,Brian Martin,206,96,University of Kansas,1962,Fort Smith,Arkansas -1740,Dwayne McClain,198,83,Villanova University,1963,Worcester,Massachusetts -1741,Xavier McDaniel,201,92,Wichita State University,1963,Columbia,South Carolina -1742,Ben McDonald,203,95,University of California - Irvine,1962,Torrance,California -1743,Chris McNealy,201,95,San Jose State University,1961,Fresno,California -1744,Dirk Minniefield,190,81,University of Kentucky,1961,Lexington,Kentucky -1745,Perry Moss,188,83,Northeastern University,1958,Tucson,Arizona -1746,Chris Mullin*,198,90,St. John's University,1963,New York,New York -1747,Charles Oakley,203,102,Virginia Union University,1963,Cleveland,Ohio -1748,Michael Phelps,193,81,Alcorn State University,1961,Vicksburg,Mississippi -1749,Ed Pinckney,206,88,Villanova University,1963,Bronx,New York -1750,Terry Porter,190,88,University of Wisconsin-Stevens Point,1963,Milwaukee,Wisconsin -1751,Blair Rasmussen,213,113,University of Oregon,1962,Auburn,Washington -1752,Jerry Reynolds,203,90,Louisiana State University,1962,Brooklyn,New York -1753,Derrick Rowland,196,88,State University of New York at Potsdam,1959,Brookhaven,New York -1754,Detlef Schrempf,206,97,University of Washington,1963,Leverkusen,Germany -1755,Carey Scurry,201,85,Long Island University,1962,Brooklyn,New York -1756,Mike Smrek,213,113,Canisius College,1962,Welland,Canada -1757,Alex Stivrins,203,99,University of Colorado,1962,Lincoln,Nebraska -1758,Greg Stokes,208,99,University of Iowa,1963,New Haven,Connecticut -1759,Bob Thornton,208,102,University of California - Irvine,1962,Los Angeles,California -1760,Wayman Tisdale,206,108,University of Oklahoma,1964,Tulsa,Oklahoma -1761,Sedric Toney,188,80,University of Dayton,1962,Columbus,Mississippi -1762,Nick Vanos,216,115,Santa Clara University,1963,San Mateo,California -1763,Sam Vincent,188,83,Michigan State University,1963,Lansing,Michigan -1764,Spud Webb,168,60,North Carolina State University,1963,Dallas,Texas -1765,Bill Wennington,213,111,St. John's University,1963,Montreal,Canada -1766,Gerald Wilkins,198,83,University of Tennessee at Chattanooga,1963,Atlanta,Georgia -1767,Pete Williams,201,86,University of Arizona,1965,Harbor City,California -1768,Voise Winters,203,90,Bradley University,1962,Chicago,Illinois -1769,Rafael Addison,201,97,Syracuse University,1964,Jersey City,New Jersey -1770,Mark Alarie,203,98,Duke University,1963,Phoenix,Arizona -1771,William Bedford,213,102,University of Memphis,1963,Memphis,Tennessee -1772,Walter Berry,203,97,St. John's University,1964,New York,New York -1773,Joe Binion,203,106,North Carolina Agricultural and Technical State University,1961,Rochester,New York -1774,Adrian Branch,201,83,University of Maryland,1963,Washington,District of Columbia -1775,Mike Brown,206,116,George Washington University,1963,Newark,New Jersey -1776,Ben Coleman,206,106,University of Maryland,1961,Minneapolis,Minnesota -1777,Dell Curry,193,86,Virginia Polytechnic Institute and State University,1964,Harrisonburg,Virginia -1778,Brad Daugherty,213,111,University of North Carolina,1965,Black Mountain,North Carolina -1779,Johnny Dawkins,188,74,Duke University,1963,Washington,District of Columbia -1780,Bruce Douglas,190,88,University of Illinois at Urbana-Champaign,1964,Quincy,Illinois -1781,Greg Dreiling,216,113,University of Kansas,1962,Wichita,Kansas -1782,Kevin Duckworth,213,124,Eastern Illinois University,1964,Harvey,Illinois -1783,Dave Feitl,211,106,University of Texas at El Paso,1962,Butler,Pennsylvania -1784,Kenny Gattison,203,102,Old Dominion University,1964,Wilmington,North Carolina -1785,Grant Gondrezick,196,92,Pepperdine University,1963,Boulder,Colorado -1786,Ron Harper,198,83,Miami University,1964,Dayton,Ohio -1787,Cedric Henderson,203,95,University of Georgia,1965,Marietta,Georgia -1788,Kevin Henderson,193,88,California State University - Fullerton,1964,Baltimore,Maryland -1789,Conner Henry,201,88,University of California - Santa Barbara,1963,Claremont,California -1790,Jeff Hornacek,190,86,Iowa State University,1963,Elmhurst,Illinois -1791,Myron Jackson,190,83,University of Arkansas at Little Rock,1964,Hamburg,Arkansas -1792,Buck Johnson,201,86,University of Alabama,1964,Birmingham,Alabama -1793,Steffond Johnson,203,99,Murray State University,1944,Clairton,Pennsylvania -1794,Anthony Jones,198,88,University of Nevada - Las Vegas,1962,Washington,District of Columbia -1795,Tim Kempton,208,111,University of Notre Dame,1964,Jamaica,New York -1796,Curtis Kitchen,206,106,University of South Florida,1964,Cape Coral,Florida -1797,Larry Krystkowiak,206,99,University of Montana,1964,Missoula,Montana -1798,Jim Lampley,208,104,University of Arkansas at Little Rock,1960,Harrisburg,Pennsylvania -1799,Fernando Martin,206,99,,1962,Madrid,Spain -1800,Maurice Martin,198,90,Saint Joseph's University,1964,Liberty,New York -1801,Forrest McKenzie,201,90,Loyola Marymount University,1963,Camden,New Jersey -1802,Nate McMillan,196,88,North Carolina State University,1964,Raleigh,North Carolina -1803,Cozell McQueen,211,106,North Carolina State University,1962,Paris,France -1804,Pete Myers,198,81,University of Arkansas at Little Rock,1963,Mobile,Alabama -1805,Johnny Newman,201,86,University of Richmond,1963,Danville,Virginia -1806,Dennis Nutt,188,77,Texas Christian University,1963,Little Rock,Arkansas -1807,Chuck Person,203,99,Auburn University,1964,Brantley,Alabama -1808,Dwayne Polee,196,81,Pepperdine University,1963,Los Angeles,California -1809,Harold Pressley,201,95,Villanova University,1963,Bronx,New York -1810,Mark Price,183,77,Georgia Institute of Technology,1964,Bartlesville,Oklahoma -1811,Dennis Rodman*,201,95,Southeastern Oklahoma State University,1961,Trenton,New Jersey -1812,Johnny Rogers,208,102,University of California - Irvine,1963,Fullerton,California -1813,Ron Rowan,196,90,St. John's University,1962,New Brighton,Pennsylvania -1814,John Salley,211,104,Georgia Institute of Technology,1964,Brooklyn,New York -1815,Brad Sellers,213,95,Ohio State University,1962,Warrensville Heights,Ohio -1816,McKinley Singleton,196,79,University of Alabama at Birmingham,1961,Memphis,Tennessee -1817,Scott Skiles,185,81,Michigan State University,1964,LaPorte,Indiana -1818,Clinton Smith,198,95,Cleveland State University,1964,Cleveland,Ohio -1819,Keith Smith,190,77,University of North Carolina,1965,Queens,New York -1820,Otis Smith,196,95,Jacksonville University,1964,Jacksonville,Florida -1821,Roy Tarpley,211,104,University of Michigan,1964,New York,New York -1822,Billy Thompson,201,88,University of Louisville,1963,Camden,New Jersey -1823,Andre Turner,180,72,University of Memphis,1964,Memphis,Tennessee -1824,Kenny Walker,203,95,University of Kentucky,1964,Roberta,Georgia -1825,Chris Washburn,211,102,North Carolina State University,1965,Hickory,North Carolina -1826,Pearl Washington,188,86,Syracuse University,1964,Brooklyn,New York -1827,John Williams,188,83,New Mexico State University,1951,New Haven,Connecticut -1828,David Wingate,196,83,Georgetown University,1963,Baltimore,Maryland -1829,Brad Wright,211,102,University of California - Los Angeles,1962,Hollywood,California -1830,Perry Young,196,95,Virginia Polytechnic Institute and State University,1963,Baltimore,Maryland -1831,Mark Acres,211,99,Oral Roberts University,1962,Inglewood,California -1832,Steve Alford,188,83,Indiana University,1964,Franklin,Indiana -1833,Greg Anderson,208,104,University of Houston,1964,Houston,Texas -1834,Joe Arlauckas,206,104,Niagara University,1965,Rochester,New York -1835,Vincent Askew,198,95,University of Memphis,1966,Memphis,Tennessee -1836,Nate Blackwell,193,77,Temple University,1965,Philadelphia,Pennsylvania -1837,Muggsy Bogues,160,61,Wake Forest University,1965,Baltimore,Maryland -1838,Norris Coleman,203,95,Kansas State University,1961,Jacksonville,Florida -1839,Dallas Comegys,206,92,DePaul University,1964,Philadelphia,Pennsylvania -1840,Winston Crite,201,105,Texas A&M University,1965,Bakersfield,California -1841,Billy Donovan,180,77,Providence College,1965,Rockville Centre,New York -1842,Chris Dudley,188,81,University of Washington,1950,Harrisburg,Pennsylvania -1843,Jim Farmer,193,86,University of Alabama,1964,Dothan,Alabama -1844,Tellis Frank,208,102,Western Kentucky University,1965,Gary,Indiana -1845,Kevin Gamble,196,95,University of Iowa,1965,Springfield,Illinois -1846,Winston Garland,188,77,Missouri State University,1964,Gary,Indiana -1847,Armen Gilliam,206,104,University of Nevada - Las Vegas,1964,Pittsburgh,Pennsylvania -1848,Horace Grant,208,97,Clemson University,1965,Augusta,Georgia -1849,Dave Henderson,196,88,Duke University,1964,Henderson,North Carolina -1850,Dave Hoppen,211,106,University of Nebraska,1964,Omaha,Nebraska -1851,Dennis Hopson,196,90,Ohio State University,1965,Toledo,Ohio -1852,Eddie Hughes,178,74,Colorado State University,1960,Greenville,Mississippi -1853,Mark Jackson,185,81,St. John's University,1965,Brooklyn,New York -1854,Michael Jackson,201,97,California State University - Los Angeles,1949,Washington,District of Columbia -1855,Kannard Johnson,206,99,Western Kentucky University,1965,Cincinnati,Ohio -1856,Kevin Johnson,203,108,Michigan State University,1962,Tuskegee,Alabama -1857,Bart Kofoed,193,95,University of Nebraska at Kearney,1964,Omaha,Nebraska -1858,Ralph Lewis,198,90,La Salle University,1963,Philadelphia,Pennsylvania -1859,Reggie Lewis,201,88,Northeastern University,1965,Baltimore,Maryland -1860,Brad Lohaus,211,104,University of Iowa,1964,New Ulm,Minnesota -1861,Derrick McKey,206,92,University of Alabama,1966,Meridian,Mississippi -1862,Reggie Miller*,201,83,University of California - Los Angeles,1965,Riverside,California -1863,Andre Moore,206,97,Loyola University of Chicago,1964,Chicago,Illinois -1864,Ron Moore,213,117,West Virginia State University,1962,New York,New York -1865,Ronnie Murphy,196,102,Jacksonville University,1964,Dover,Delaware -1866,Tod Murphy,206,99,University of California - Irvine,1963,Long Beach,California -1867,Martin Nessley,218,117,Duke University,1965,Columbus,Ohio -1868,Ken Norman,203,97,University of Illinois at Urbana-Champaign,1964,Chicago,Illinois -1869,Scottie Pippen*,203,95,University of Central Arkansas,1965,Hamburg,Arkansas -1870,Olden Polynice,211,99,University of Virginia,1964,Port-au-Prince,Haiti -1871,Richard Rellford,198,104,University of Michigan,1964,Riviera Beach,Florida -1872,Scott Roth,203,96,University of Wisconsin,1963,Cleveland,Ohio -1873,Brian Rowsom,206,99,University of North Carolina at Wilmington,1965,Newark,New Jersey -1874,Kenny Smith,190,77,University of North Carolina,1965,Queens,New York -1875,John Stroeder,208,117,University of Montana,1958,Bremerton,Washington -1876,Mark Wade,180,72,University of Nevada - Las Vegas,1965,Torrance,California -1877,Milt Wagner,196,83,University of Louisville,1963,Camden,New Jersey -1878,Jamie Waller,193,97,Virginia Union University,1964,South Boston,Virginia -1879,Duane Washington,193,88,Middle Tennessee State University,1964,Eschwege,Germany -1880,Chris Welp,213,111,University of Washington,1964,Delmenhorst,Germany -1881,Clinton Wheeler,185,83,William Paterson University,1959,Neptune,New Jersey -1882,Eric White,203,90,Pepperdine University,1965,San Francisco,California -1883,Tony White,188,77,University of Tennessee,1965,Charlotte,North Carolina -1884,Reggie Williams,201,86,Georgetown University,1964,Baltimore,Maryland -1885,Nikita Wilson,203,90,Louisiana State University,1964,Pineville,Louisiana -1886,Ricky Wilson,196,90,University of Louisville,1956,Louisville,Kentucky -1887,Rickie Winslow,203,102,University of Houston,1964,Houston,Texas -1888,Joe Wolf,211,104,University of North Carolina,1964,Kohler,Wisconsin -1889,Phil Zevenbergen,208,104,University of Washington,1964,Seattle,Washington -1890,Randy Allen,203,99,Florida State University,1965,Milton,Florida -1891,Michael Anderson,180,83,Drexel University,1966,Philadelphia,Pennsylvania -1892,Willie Anderson,201,86,University of Georgia,1967,Greenville,South Carolina -1893,Ricky Berry,203,92,San Jose State University,1964,Lansing,Michigan -1894,Anthony Bowie,198,86,University of Oklahoma,1963,Tulsa,Oklahoma -1895,Scott Brooks,180,74,University of California - Irvine,1965,French Camp,California -1896,Mark Bryant,206,111,Seton Hall University,1965,Glen Ridge,New Jersey -1897,Greg Butler,211,108,Stanford University,1966,Inglewood,California -1898,Mike Champion,208,104,Gonzaga University,1964,Everett,Washington -1899,Rex Chapman,193,83,University of Kentucky,1967,Bowling Green,Kentucky -1900,Derrick Chievous,201,88,University of Missouri,1967,New York,New York -1901,Mark Davis,198,88,Old Dominion University,1963,Chesapeake,Virginia -1902,Vinny Del,198,88,,1963,, -1903,Fennis Dembo,196,97,University of Wyoming,1966,Mobile,Alabama -1904,Ledell Eackles,196,99,University of New Orleans,1966,Baton Rouge,Louisiana -1905,Kevin Edwards,190,86,DePaul University,1965,Cleveland Heights,Ohio -1906,Wayne Englestad,203,111,University of California - Irvine,1966,Rosemead,California -1907,Rolando Ferreira,216,108,University of Houston,1964,Curtiba,Brazil -1908,Duane Ferrell,201,94,Georgia Institute of Technology,1965,Baltimore,Maryland -1909,Anthony Frederick,201,92,Pepperdine University,1964,Los Angeles,California -1910,Corey Gaines,190,88,Loyola Marymount University,1965,Los Angeles,California -1911,Tom Garrick,188,83,University of Rhode Island,1966,West Warwick,Rhode Island -1912,Ben Gillery,213,106,Georgetown University,1965,Detroit,Michigan -1913,Orlando Graham,203,99,Auburn University at Montgomery,1965,Montgomery,Alabama -1914,Ron Grandison,198,97,University of New Orleans,1964,Los Angeles,California -1915,Gary Grant,190,83,University of Michigan,1965,Canton,Ohio -1916,Harvey Grant,203,88,University of Oklahoma,1965,Augusta,Georgia -1917,Sylvester Gray,198,104,University of Memphis,1967,Millington,Tennessee -1918,Jeff Grayer,196,90,Iowa State University,1965,Flint,Michigan -1919,Jack Haley,208,108,University of California - Los Angeles,1964,Long Beach,California -1920,Hersey Hawkins,190,86,Bradley University,1966,Chicago,Illinois -1921,Tito Horford,216,111,University of Miami,1966,LaRomana,Dominican Republic -1922,Avery Johnson,178,79,Southern University and A&M College,1965,New Orleans,Louisiana -1923,Bill Jones,201,79,University of Iowa,1966,Detroit,Michigan -1924,Shelton Jones,206,95,St. John's University,1966,Copaigue,New York -1925,Steve Kerr,190,79,University of Arizona,1965,Beirut,Lebanon -1926,Randolph Keys,201,88,University of Southern Mississippi,1966,Collins,Mississippi -1927,Jerome Lane,198,104,University of Pittsburgh,1966,Akron,Ohio -1928,Andrew Lang,211,111,University of Arkansas,1966,Pine Bluff,Arkansas -1929,Eric Leckner,211,120,University of Wyoming,1966,Inglewood,California -1930,Jim Les,180,74,Bradley University,1963,Niles,Illinois -1931,Rob Lock,206,102,University of Kentucky,1966,Reedley,California -1932,Grant Long,203,102,Eastern Michigan University,1966,Wayne,Michigan -1933,Dan Majerle,198,97,Central Michigan University,1965,Traverse City,Michigan -1934,Danny Manning,208,104,University of Kansas,1966,Hattiesburg,Mississippi -1935,Vernon Maxwell,193,81,University of Florida,1965,Gainesville,Florida -1936,Todd Mitchell,201,92,Purdue University,1966,Toledo,Ohio -1937,Chris Morris,203,95,Auburn University,1966,Atlanta,Georgia -1938,Richard Morton,190,86,California State University - Fullerton,1966,San Francisco,California -1939,Craig Neal,196,74,Georgia Institute of Technology,1964,Muncie,Indiana -1940,Jose Ortiz,208,102,Oregon State University,1963,Albonito,Puerto Rico -1941,Will Perdue,213,108,Vanderbilt University,1965,Melbourne,Florida -1942,Tim Perry,206,90,Temple University,1965,Freehold,New Jersey -1943,Dave Popson,208,99,University of North Carolina,1964,Kingston,Pennsylvania -1944,Dominic Pressley,188,77,Boston College,1964,Washington,District of Columbia -1945,Mitch Richmond*,196,97,Kansas State University,1965,Fort Lauderdale,Florida -1946,Ramon Rivas,208,117,Temple University,1966,Carolina,Puerto Rico -1947,David Rivers,183,77,University of Notre Dame,1965,Jersey City,New Jersey -1948,Rob Rose,196,81,George Mason University,1964,Rochester,New York -1949,Jim Rowinski,203,113,Purdue University,1961,Long Island,New York -1950,Rony Seikaly,211,104,Syracuse University,1965,Beirut,Lebanon -1951,Charles Shackleford,208,102,North Carolina State University,1966,Kinston,North Carolina -1952,John Shasky,211,106,University of Minnesota,1964,Birmingham,Michigan -1953,Brian Shaw,198,86,University of California - Santa Barbara,1966,Oakland,California -1954,Keith Smart,185,79,Indiana University,1964,Baton Rouge,Louisiana -1955,Charles Smith,208,104,University of Pittsburgh,1965,Bridgeport,Connecticut -1956,Rik Smits,224,113,Marist College,1966,Eindhoven,Netherlands -1957,John Starks,190,81,Oklahoma State University,1965,Tulsa,Oklahoma -1958,Everette Stephens,188,79,Purdue University,1966,Evanston,Illinois -1959,Rod Strickland,196,90,Jacksonville University,1940,Jacksonville,Florida -1960,Barry Sumpter,211,97,Austin Peay State University,1965,Brooklyn,Illinois -1961,Anthony Taylor,193,79,University of Oregon,1965,Los Angeles,California -1962,Tom Tolbert,201,106,University of Arizona,1965,Long Beach,California -1963,Kelvin Upshaw,188,81,University of Utah,1963,Chicago,Illinois -1964,Morlon Wiley,193,83,California State University - Long Beach,1966,New Orleans,Louisiana -1965,Micheal Williams,188,82,Lincoln University of Missouri,1945,Seattle,Washington -1966,David Wood,206,102,University of Nevada - Reno,1964,Spokane,Washington -1967,Nick Anderson,198,92,University of Illinois at Urbana-Champaign,1968,Chicago,Illinois -1968,Michael Ansley,201,102,University of Alabama,1967,Birmingham,Alabama -1969,B.J. Armstrong,201,102,,1967,, -1970,Dana Barros,180,73,Boston College,1967,Boston,Massachusetts -1971,Kenny Battle,198,95,University of Illinois at Urbana-Champaign,1964,Aurora,Illinois -1972,Winston Bennett,201,95,University of Kentucky,1965,Louisville,Kentucky -1973,Mookie Blaylock,183,81,University of Oklahoma,1967,Garland,Texas -1974,Chucky Brown,201,97,North Carolina State University,1968,New York,New York -1975,Raymond Brown,203,99,University of Idaho,1965,Atlanta,Georgia -1976,Stanley Brundy,198,95,DePaul University,1967,New Orleans,Louisiana -1977,Torgeir Bryn,206,113,Texas State University,1964,Oslo,Norway -1978,Steve Bucknall,198,97,University of North Carolina,1966,London,United Kingdom -1979,Adrian Caldwell,203,120,Lamar University,1966,Falls County,Texas -1980,Lanard Copeland,198,86,Georgia State University,1965,Atlanta,Georgia -1981,Terry Davis,206,102,Virginia Union University,1967,Danville,Virginia -1982,Byron Dinkins,185,77,University of North Carolina at Charlotte,1967,Charlotte,North Carolina -1983,Vlade Divac,216,110,,1968,Prijepolje,Serbia -1984,Sherman Douglas,183,81,Syracuse University,1966,Washington,District of Columbia -1985,Terry Dozier,206,95,University of South Carolina,1966,Baltimore,Maryland -1986,Blue Edwards,193,90,East Carolina University,1965,Washington,District of Columbia -1987,Jay Edwards,213,102,University of Washington,1955,Seattle,Washington -1988,Sean Elliott,203,92,University of Arizona,1968,Tucson,Arizona -1989,Pervis Ellison,206,95,University of Louisville,1967,Savannah,Georgia -1990,Derrick Gervin,203,90,University of Texas at San Antonio,1963,Detroit,Michigan -1991,Greg Grant,170,63,Trenton State University,1966,Trenton,New Jersey -1992,Scott Haffner,190,81,University of Evansville,1966,Terre Haute,Indiana -1993,Tom Hammonds,206,97,Georgia Institute of Technology,1967,Fort Walton,Florida -1994,Tim Hardaway,183,79,University of Texas at El Paso,1966,Chicago,Illinois -1995,Mike Higgins,206,99,University of Northern Colorado,1967,Grand Island,Nebraska -1996,Ed Horton,203,104,University of Iowa,1967,Springfield,Illinois -1997,Byron Irvin,196,86,University of Missouri,1966,LaGrange,Illinois -1998,Jaren Jackson,193,86,Georgetown University,1967,New Orleans,Louisiana -1999,Eric Johnson,188,92,University of Nebraska,1966,Brooklyn,New York -2000,Nate Johnston,203,95,University of Tampa,1966,Birmingham,Alabama -2001,Shawn Kemp,208,104,Trinity Valley Community College,1969,Elkhart,Indiana -2002,Stan Kimbrough,180,69,Xavier University,1966,Tuscaloosa,Alabama -2003,Stacey King,211,104,University of Oklahoma,1967,Lawton,Oklahoma -2004,Frank Kornet,206,102,Vanderbilt University,1967,Lexington,Kentucky -2005,Jeff Lebo,188,81,University of North Carolina,1966,Carlisle,Pennsylvania -2006,Tim Legler,193,90,La Salle University,1966,Washington,District of Columbia -2007,Gary Leonard,216,113,University of Missouri,1967,Belleville,Illinois -2008,Clifford Lett,190,77,University of Florida,1965,Pensacola,Florida -2009,Todd Lichti,193,92,Stanford University,1967,Walnut Creek,California -2010,Roy Marble,198,86,University of Iowa,1966,Flint,Michigan -2011,Sarunas Marciulionis*,196,90,,1964,Kaunas,Lithuania -2012,Jeff Martin,196,88,Murray State University,1967,Cherry Valley,Arkansas -2013,Anthony Mason,201,113,Tennessee State University,1966,Miami,Florida -2014,Bob McCann,198,110,Morehead State University,1964,Morristown,New Jersey -2015,Mel McCants,203,108,Purdue University,1967,Chicago,Illinois -2016,George McCloud,198,92,Florida State University,1967,Daytona Beach,Florida -2017,Carlton McKinney,193,86,Southern Methodist University,1964,San Diego,California -2018,Scott Meents,208,102,University of Illinois at Urbana-Champaign,1964,Kankakee,Illinois -2019,Sam Mitchell,198,95,Mercer University,1963,Columbus,Georgia -2020,Mike Morrison,193,88,Loyola College in Maryland,1967,Washington,District of Columbia -2021,John Morton,190,81,Seton Hall University,1967,Bronx,New York -2022,Dyron Nix,201,95,University of Tennessee,1967,Meridian,Mississippi -2023,Zarko Paspalj,206,97,,1966,Pljevlja,Montenegro -2024,Kenny Payne,203,88,University of Louisville,1966,Laurel,Mississippi -2025,Drazen Petrovic*,196,88,,1964,Sibenik,Croatia -2026,Brian Quinnett,203,106,Washington State University,1966,Pullman,Washington -2027,J.R. Reid,203,106,,1966,, -2028,Glen Rice,201,97,University of Michigan,1967,Jacksonville,Arkansas -2029,Pooh Richardson,185,81,University of California - Los Angeles,1966,Philadelphia,Pennsylvania -2030,Clifford Robinson,206,99,University of Southern California,1960,Oakland,California -2031,David Robinson*,216,106,United States Naval Academy,1965,Key West,Florida -2032,Doug Roth,211,115,University of Tennessee,1967,Knoxville,Tennessee -2033,Donald Royal,203,95,University of Notre Dame,1966,New Orleans,Louisiana -2034,Delaney Rudd,188,81,Wake Forest University,1962,Halifax,North Carolina -2035,Jeff Sanders,203,102,Georgia Southern University,1966,Augusta,Georgia -2036,Dexter Shouse,188,90,University of South Alabama,1963,Terre Haute,Indiana -2037,Michael Smith,208,102,Brigham Young University,1965,Rochester,New York -2038,Jay Taylor,190,86,Eastern Illinois University,1967,Aurora,Illinois -2039,Leonard Taylor,203,99,University of California,1966,Los Angeles,California -2040,Henry Turner,188,88,University of Nebraska,1938,, -2041,Gary Voce,206,108,University of Notre Dame,1965,Jamaica, -2042,Alexander Volkov,208,98,,1964,Omsk,Russia -2043,Doug West,198,90,Villanova University,1967,Altoona,Pennsylvania -2044,Randy White,203,108,Louisiana Tech University,1967,Shreveport,Louisiana -2045,Mike Williams,188,82,Lincoln University of Missouri,1945,Seattle,Washington -2046,Haywoode Workman,188,81,Oral Roberts University,1966,Charlotte,North Carolina -2047,Alaa Abdelnaby,208,108,Duke University,1968,Cairo,Egypt -2048,Mahmoud Abdul-Rauf,188,83,University of California - Los Angeles,1942,Wilmington,Delaware -2049,Keith Askins,201,89,University of Alabama,1967,Athens,Alabama -2050,Milos Babic,213,108,Tennessee Technological University,1968,Kraljevo,Serbia -2051,Cedric Ball,203,95,University of North Carolina at Charlotte,1968,Worcester,Massachusetts -2052,Lance Blanks,193,86,University of Texas at Austin,1966,Del Rio,Texas -2053,Anthony Bonner,203,97,Saint Louis University,1968,St. Louis,Missouri -2054,Dee Brown,185,72,Jacksonville University,1968,Jacksonville,Florida -2055,Jud Buechler,198,99,University of Arizona,1968,San Diego,California -2056,Matt Bullard,208,97,University of Iowa,1967,Des Moines,Iowa -2057,Willie Burton,203,95,University of Minnesota,1968,Detroit,Michigan -2058,Rick Calloway,198,81,University of Kansas,1966,Cincinnati,Ohio -2059,Elden Campbell,211,97,Clemson University,1968,Los Angeles,California -2060,Duane Causwell,213,108,Temple University,1968,Queens Village,New York -2061,Cedric Ceballos,198,86,California State University - Fullerton,1969,Maui,Hawaii -2062,Richard Coffey,198,96,University of Minnesota,1965,Aurora,North Carolina -2063,Derrick Coleman,208,104,Syracuse University,1967,Mobile,Alabama -2064,Bimbo Coles,185,81,Virginia Polytechnic Institute and State University,1968,Covington,Virginia -2065,Anthony Cook,206,92,University of Arizona,1967,Los Angeles,California -2066,Tony Dawson,201,97,Florida State University,1967,Kinston,North Carolina -2067,Mario Elie,196,95,American International College,1963,New York,New York -2068,A.J. English,196,95,,1963,, -2069,Danny Ferry,208,104,Duke University,1966,Hyattsville,Maryland -2070,Greg Foster,211,108,University of Texas at El Paso,1968,Oakland,California -2071,Tate George,196,86,University of Connecticut,1968,Newark,New Jersey -2072,Kendall Gill,196,88,University of Illinois at Urbana-Champaign,1968,Chicago,Illinois -2073,Gerald Glass,196,100,University of Mississippi,1967,Greenwood,Mississippi -2074,Dan Godfread,208,113,University of Evansville,1967,Fort Wayne,Indiana -2075,Jim Grandholm,213,106,University of South Florida,1960,Elkhart,Indiana -2076,Tony Harris,190,86,University of New Orleans,1967,Monroe,Louisiana -2077,Steve Henson,180,80,Kansas State University,1968,Junction City,Kansas -2078,Sean Higgins,206,92,University of Michigan,1968,Los Angeles,California -2079,Tyrone Hill,206,108,Xavier University,1968,Cincinnati,Ohio -2080,Dave Jamerson,196,86,Ohio University,1967,Clarksburg,West Virginia -2081,Henry James,203,99,St. Mary's University,1965,Centreville,Alabama -2082,Les Jepsen,213,107,University of Iowa,1967,Bowbells,North Dakota -2083,Alec Kessler,211,104,University of Georgia,1967,Minneapolis,Minnesota -2084,Bo Kimble,193,86,Loyola Marymount University,1966,Philadelphia,Pennsylvania -2085,Negele Knight,185,79,University of Dayton,1967,Detroit,Michigan -2086,Kurk Lee,190,86,Towson University,1967,Baltimore,Maryland -2087,Marcus Liberty,203,92,University of Illinois at Urbana-Champaign,1968,Chicago,Illinois -2088,Ian Lockhart,203,108,University of Tennessee,1967,Nassau,Bahamas -2089,Tony Massenburg,206,99,University of Maryland,1967,Sussex,Virginia -2090,Travis Mays,188,86,University of Texas at Austin,1968,Ocala,Florida -2091,Terry Mills,208,104,University of Michigan,1967,Romulus,Michigan -2092,Chris Munk,206,102,University of Southern California,1967,San Francisco,California -2093,Jerrod Mustaf,208,107,University of Maryland,1969,Whiteville,North Carolina -2094,Dan O'Sullivan,208,113,Fordham University,1968,Bronx,New York -2095,Alan Ogg,218,108,University of Alabama at Birmingham,1967,Lancaster,Ohio -2096,Brian Oliver,193,95,Georgia Institute of Technology,1968,Chicago,Illinois -2097,Gerald Paddio,201,92,University of Nevada - Las Vegas,1965,Lafayette,Louisiana -2098,Walter Palmer,216,97,Dartmouth College,1968,Ithaca,New York -2099,Gary Payton*,193,81,Oregon State University,1968,Oakland,California -2100,Kevin Pritchard,190,81,University of Kansas,1967,Bloomington,Indiana -2101,Larry Robinson,190,81,Centenary College of Louisiana,1968,Bossier City,Louisiana -2102,Rumeal Robinson,188,88,University of Michigan,1966,Mandeville,Jamaica -2103,Steve Scheffler,206,113,Purdue University,1967,Grand Rapids,Michigan -2104,Dwayne Schintzius,216,117,University of Florida,1968,Brandon,Florida -2105,Dennis Scott,203,103,Georgia Institute of Technology,1968,Hagerstown,Maryland -2106,Lionel Simmons,201,95,La Salle University,1968,Philadelphia,Pennsylvania -2107,Tony Smith,201,95,,1968,, -2108,Felton Spencer,213,120,University of Louisville,1968,Louisville,Kentucky -2109,Irving Thomas,203,102,Florida State University,1966,Brooklyn,New York -2110,Andy Toolson,198,95,Brigham Young University,1966,Chicago,Illinois -2111,Loy Vaught,206,104,University of Michigan,1968,Grand Rapids,Michigan -2112,Stojko Vrankovic,218,117,,1964,Drnis,Croatia -2113,Jayson Williams,206,108,St. John's University,1968,Ritter,South Carolina -2114,Kenny Williams,188,79,St. John's University,1961,New York,New York -2115,Scott Williams,208,104,University of North Carolina,1968,Hacienda Heights,California -2116,Trevor Wilson,201,95,University of California - Los Angeles,1968,Los Angeles,California -2117,Kennard Winchester,196,95,Averett University,1966,Chestertown,Maryland -2118,Howard Wright,190,83,Austin Peay State University,1947,Louisville,Kentucky -2119,A.J. Wynder,190,83,,1947,, -2120,Victor Alexander,206,120,Iowa State University,1969,Detroit,Michigan -2121,Kenny Anderson,183,76,Georgia Institute of Technology,1970,Queens,New York -2122,Greg Anthony,183,79,University of Nevada - Las Vegas,1967,Las Vegas,Nevada -2123,Stacey Augmon,203,92,University of Nevada - Las Vegas,1968,Pasadena,California -2124,Isaac Austin,208,115,Arizona State University,1969,Gridley,California -2125,Steve Bardo,196,86,University of Illinois at Urbana-Champaign,1968,Henderson,Kentucky -2126,David Benoit,203,99,University of Alabama,1968,Lafayette,Louisiana -2127,Terrell Brandon,180,81,University of Oregon,1970,Portland,Oregon -2128,Kevin Brooks,198,90,University of Louisiana at Lafayette,1969,Beaufort,South Carolina -2129,Myron Brown,190,81,Slippery Rock University of Pennsylvania,1969,McKees Rocks,Pennsylvania -2130,Randy Brown,203,99,University of Idaho,1965,Atlanta,Georgia -2131,Demetrius Calip,185,74,University of Michigan,1969,Flint,Michigan -2132,Pete Chilcutt,208,104,University of North Carolina,1968,Sumter,South Carolina -2133,Marty Conlon,208,101,Providence College,1968,Bronx,New York -2134,Tom Copa,208,124,Marquette University,1964,Robbinsdale,Minnesota -2135,Chris Corchiani,183,83,North Carolina State University,1968,Coral Gables,Florida -2136,Corey Crowder,196,97,Kentucky Wesleyan College,1969,Carrollton,Georgia -2137,Dale Davis,211,104,Clemson University,1969,Toccoa,Georgia -2138,Bison Dele,206,106,University of Arizona,1969,Fresno,California -2139,Patrick Eddie,211,108,University of Mississippi,1967,Milwaukee,Wisconsin -2140,LeRon Ellis,208,95,St. John's University,1940,Far Rockaway,New York -2141,Rick Fox,201,104,University of North Carolina,1969,Toronto,Canada -2142,Chris Gatling,208,99,Old Dominion University,1967,Elizabeth,New Jersey -2143,Paul Graham,198,90,Ohio University,1967,Philadelphia,Pennsylvania -2144,Sean Green,196,95,Iona College,1970,Santa Monica,California -2145,Carl Herrera,206,97,University of Houston,1966,Trinidad,Trinidad and Tobago -2146,Donald Hodge,213,104,Temple University,1969,Washington,District of Columbia -2147,Brian Howard,198,92,North Carolina State University,1967,Winston-Salem,North Carolina -2148,Cedric Hunter,183,81,University of Kansas,1965,Wichita Falls,Texas -2149,Mike Iuzzolino,178,79,Saint Francis University,1968,Altoona,Pennsylvania -2150,Rich King,218,117,University of Nebraska,1969,Lincoln,Nebraska -2151,Doug Lee,196,90,Purdue University,1964,Washington,Illinois -2152,Luc Longley,218,120,University of New Mexico,1969,Melbourne,Australia -2153,Kevin Lynch,196,88,University of Minnesota,1968,Bloomington,Minnesota -2154,Mark Macon,196,83,Temple University,1969,Saginaw,Michigan -2155,Tharon Mayes,190,79,Florida State University,1968,New Haven,Connecticut -2156,Rodney Monroe,190,83,North Carolina State University,1968,Baltimore,Maryland -2157,Tracy Moore,193,90,University of Tulsa,1965,Oklahoma City,Oklahoma -2158,Eric Murdock,185,86,Providence College,1968,Somerville,New Jersey -2159,Dikembe Mutombo*,218,111,Georgetown University,1966,Kinshasa,Democratic Republic of the Congo -2160,Jimmy Oliver,196,92,Purdue University,1969,Menifee,Arkansas -2161,Billy Owens,203,99,Syracuse University,1969,Carlisle,Pennsylvania -2162,Keith Owens,201,102,University of California - Los Angeles,1969,San Francisco,California -2163,Robert Pack,188,81,University of Southern California,1969,New Orleans,Louisiana -2164,Elliot Perry,183,68,University of Memphis,1969,Memphis,Tennessee -2165,Bobby Phills,196,95,Southern University and A&M College,1969,Baton Rouge,Louisiana -2166,Mark Randall,203,106,University of Kansas,1967,Edina,Minnesota -2167,Stanley Roberts,213,129,Louisiana State University,1970,Hopkins,South Carolina -2168,Doug Smith,188,86,University of Minnesota,1920,Minnesota, -2169,LaBradford Smith,203,97,Alcorn State University,1958,Rolling Fork,Mississippi -2170,Steve Smith,201,90,Michigan State University,1969,Highland Park,Michigan -2171,Larry Stewart,203,99,Coppin State University,1968,Philadelphia,Pennsylvania -2172,Derek Strong,203,99,Xavier University,1968,Los Angeles,California -2173,Lamont Strothers,193,86,Christopher Newport University,1968,Nansemond County,Virginia -2174,Greg Sutton,188,77,Oral Roberts University,1967,Santa Cruz,California -2175,Carl Thomas,193,79,Eastern Michigan University,1969,Dayton,Ohio -2176,Charles Thomas,190,79,Eastern Michigan University,1969,Dayton,Ohio -2177,Stephen Thompson,193,83,Syracuse University,1968,Los Angeles,California -2178,John Turner,203,111,Phillips University,1967,Washington,District of Columbia -2179,Joao Vianna,206,97,,1966,Trabajara,Brazil -2180,Eric Anderson,206,99,Indiana University,1970,Chicago,Illinois -2181,Anthony Avent,206,106,Seton Hall University,1969,Rocky Mount,North Carolina -2182,Jon Barry,193,88,Georgia Institute of Technology,1969,Oakland,California -2183,Tony Bennett,183,79,University of Wisconsin-Green Bay,1969,Green Bay,Wisconsin -2184,Alex Blackwell,198,113,Monmouth University,1970,Toms River,New Jersey -2185,Ricky Blanton,201,97,Louisiana State University,1966,Miami,Florida -2186,Walter Bond,196,90,University of Minnesota,1969,Chicago,Illinois -2187,Dexter Cambridge,201,101,University of Texas at Austin,1970,Eleuthra,Bahamas -2188,Doug Christie,198,90,Pepperdine University,1970,Seattle,Washington -2189,Duane Cooper,185,83,University of Southern California,1969,Benton Harbor,Michigan -2190,Joe Courtney,203,106,University of Southern Mississippi,1969,Jackson,Mississippi -2191,John Crotty,185,83,University of Virginia,1969,Orange,New Jersey -2192,Radisav Curcic,208,124,,1965,Cacak,Serbia -2193,Lloyd Daniels,201,92,Mount San Antonio College,1967,Brooklyn,New York -2194,Hubert Davis,196,83,University of North Carolina,1970,Winston-Salem,North Carolina -2195,Todd Day,198,85,University of Arkansas,1970,Decatur,Illinois -2196,Richard Dumas,190,77,Northeastern State University,1970,, -2197,Pat Durham,201,95,Colorado State University,1967,Dallas,Texas -2198,LaPhonso Ellis,203,108,University of Notre Dame,1970,East St. Louis,Illinois -2199,Matt Geiger,213,110,Georgia Institute of Technology,1969,Salem,Massachusetts -2200,Litterial Green,185,83,University of Georgia,1970,Pascagoula,Mississippi -2201,Tom Gugliotta,208,108,North Carolina State University,1969,Huntington Station,New York -2202,Jay Guidinger,208,115,University of Minnesota Duluth,1969,Milwaukee,Wisconsin -2203,Robert Horry,206,99,University of Alabama,1970,Andalusia,Alabama -2204,Byron Houston,196,113,Oklahoma State University,1969,Watonga,Kansas -2205,Stephen Howard,206,102,DePaul University,1970,Dallas,Texas -2206,Jim Jackson,198,99,Ohio State University,1970,Toledo,Ohio -2207,Keith Jennings,170,72,East Tennessee State University,1968,Culpepper,Virginia -2208,Dave Johnson,201,95,Syracuse University,1970,Morgan City,Louisiana -2209,Thomas Jordan,208,99,Oklahoma State University,1968,Baltimore,Maryland -2210,Adam Keefe,206,104,Stanford University,1970,Irvine,California -2211,Christian Laettner,211,106,Duke University,1969,Angola,New York -2212,Sam Mack,201,99,University of Houston,1970,Chicago,Illinois -2213,Don MacLean,208,106,University of California - Los Angeles,1970,Palo Alto,California -2214,Marlon Maxey,203,113,University of Texas at El Paso,1969,Chicago,Illinois -2215,Lee Mayberry,185,78,University of Arkansas,1970,Tulsa,Oklahoma -2216,Oliver Miller,206,127,University of Arkansas,1970,Fort Worth,Texas -2217,Harold Miner,196,95,University of Southern California,1971,Inglewood,California -2218,Isaiah Morris,203,103,University of Arkansas,1969,Richmond,Virginia -2219,Alonzo Mourning*,208,108,Georgetown University,1970,Chesapeake,Virginia -2220,Tracy Murray,201,102,University of California - Los Angeles,1971,Los Angeles,California -2221,Melvin Newbern,193,90,University of Minnesota,1967,Toledo,Ohio -2222,Shaquille O'Neal*,216,147,Louisiana State University,1972,Newark,New Jersey -2223,Matt Othick,188,74,University of Arizona,1969,Clovis,New Mexico -2224,Doug Overton,190,86,La Salle University,1969,Philadelphia,Pennsylvania -2225,Anthony Peeler,193,94,University of Missouri,1969,Kansas City,Missouri -2226,Brent Price,185,74,University of Oklahoma,1968,Shawnee,Oklahoma -2227,Anthony Pullard,208,111,McNeese State University,1966,DeQuincy,Louisiana -2228,Sean Rooks,208,113,University of Arizona,1969,New York,New York -2229,Malik Sealy,203,86,St. John's University,1970,Bronx,New York -2230,Chris Smith,208,104,University of Pittsburgh,1965,Bridgeport,Connecticut -2231,Reggie Smith,208,108,Texas Christian University,1970,San Jose,California -2232,Andre Spencer,198,95,Northern Arizona University,1964,Stockton,California -2233,Elmore Spencer,213,122,University of Nevada - Las Vegas,1969,Atlanta,Georgia -2234,Latrell Sprewell,196,86,University of Alabama,1970,Milwaukee,Wisconsin -2235,Barry Stevens,196,88,Iowa State University,1963,Flint,Michigan -2236,Bryant Stith,196,94,University of Virginia,1970,Emporia,Virginia -2237,Gundars Vetra,198,88,,1967,Ventspils,Latvia -2238,Clarence Weatherspoon,198,108,University of Southern Mississippi,1970,Crawford,Mississippi -2239,Marcus Webb,206,115,University of Alabama,1970,Montgomery,Alabama -2240,Robert Werdann,211,113,St. John's University,1970,Sunnyside,New York -2241,Corey Williams,188,86,Oklahoma State University,1970,Twiggs,Georgia -2242,Lorenzo Williams,206,90,Stetson University,1969,Ocala,Florida -2243,Walt Williams,193,88,Indiana University,1923,, -2244,Randy Woods,178,83,La Salle University,1970,Philadelphia,Pennsylvania -2245,Gary Alexander,201,108,University of South Florida,1969,Jacksonville,Florida -2246,Vin Baker,211,105,University of Hartford,1971,Lake Wales,Florida -2247,Corie Blount,206,108,University of Cincinnati,1969,Monrovia,California -2248,Shawn Bradley,229,106,Brigham Young University,1972,Landstuhl,Germany -2249,P.J. Brown,229,106,,1972,, -2250,Evers Burns,203,117,University of Maryland,1971,Baltimore,Maryland -2251,Scott Burrell,201,98,University of Connecticut,1971,New Haven,Connecticut -2252,Mitchell Butler,188,77,University of Memphis,1946,Memphis,Tennessee -2253,Sam Cassell,190,83,Florida State University,1969,Baltimore,Maryland -2254,Calbert Cheaney,201,94,Indiana University,1971,Evansville,Indiana -2255,Michael Curry,196,95,Georgia Southern University,1968,Anniston,Alabama -2256,Antonio Davis,206,97,University of Texas at El Paso,1968,Oakland,California -2257,Brian Davis,190,81,University of Maryland,1955,Monaca,Pennsylvania -2258,Terry Dehere,188,86,Seton Hall University,1971,New York,New York -2259,Dell Demps,190,92,University of the Pacific,1970,Long Beach,California -2260,Acie Earl,208,108,University of Iowa,1970,Peoria,Illinois -2261,Bill Edwards,203,97,Wright State University,1971,Middletown,Ohio -2262,Doug Edwards,201,99,Florida State University,1971,Miami,Florida -2263,Harold Ellis,196,90,Morehouse College,1970,Atlanta,Georgia -2264,Alphonso Ford,185,86,Mississippi Valley State University,1971,Greenwood,Mississippi -2265,Chad Gallagher,208,115,Creighton University,1969,Rockford,Illinois -2266,Andrew Gaze,201,92,Seton Hall University,1965,Melbourne,Australia -2267,Ricky Grace,185,81,University of Oklahoma,1967,Dallas,Texas -2268,Greg Graham,193,78,Indiana University,1970,Indianapolis,Indiana -2269,Josh Grant,206,101,University of Utah,1967,Salt Lake City,Utah -2270,Andres Guibert,208,102,,1968,Havana,Cuba -2271,Geert Hammink,213,118,Louisiana State University,1969,Didam,Netherlands -2272,Anfernee Hardaway,201,88,University of Memphis,1971,Memphis,Tennessee -2273,Lucious Harris,196,86,California State University - Long Beach,1970,Los Angeles,California -2274,Antonio Harvey,211,102,Pfeiffer University,1970,Pascagoula,Mississippi -2275,Scott Haskin,211,113,Oregon State University,1970,Riverside,California -2276,Skeeter Henry,201,86,University of Oklahoma,1967,Dallas,Texas -2277,Allan Houston,198,90,University of Tennessee,1971,Louisville,Kentucky -2278,Lindsey Hunter,188,77,Jackson State University,1970,Utica,Mississippi -2279,Bobby Hurley,183,74,Duke University,1971,Jersey City,New Jersey -2280,Stanley Jackson,190,83,University of Alabama at Birmingham,1970,Tuskegee,Alabama -2281,Chris Jent,201,99,Ohio State University,1970,Orange,California -2282,Ervin Johnson,188,92,University of Nebraska,1966,Brooklyn,New York -2283,Popeye Jones,203,113,Murray State University,1970,Dresden,Tennessee -2284,Adonis Jordan,180,77,University of Kansas,1970,Brooklyn,New York -2285,Reggie Jordan,193,88,New Mexico State University,1968,Chicago,Illinois -2286,Warren Kidd,206,106,Middle Tennessee State University,1970,Harpersville,Alabama -2287,Chris King,203,97,Wake Forest University,1969,Newton Grove,North Carolina -2288,Toni Kukoc,208,87,,1968,Split,Croatia -2289,George Lynch,203,98,University of North Carolina,1970,Roanoke,Virginia -2290,Malcolm Mackey,206,112,Georgia Institute of Technology,1970,Chattanooga,Tennessee -2291,Gerald Madkins,193,90,University of California - Los Angeles,1969,Merced,California -2292,Bob Martin,213,113,University of Minnesota,1969,Minneapolis,Minnesota -2293,Jamal Mashburn,203,108,University of Kentucky,1972,New York,New York -2294,Darnell Mee,196,79,Western Kentucky University,1971,Cleveland,Tennessee -2295,Chris Mills,198,97,University of Arizona,1970,Los Angeles,California -2296,Darren Morningstar,208,106,University of Pittsburgh,1969,Stevenson,Washington -2297,Gheorghe Muresan,231,137,,1971,Triteni,Romania -2298,Bo Outlaw,203,95,University of Houston,1971,San Antonio,Texas -2299,Mike Peplowski,208,122,Michigan State University,1970,Detroit,Michigan -2300,Richard Petruska,208,117,University of California - Los Angeles,1969,Levice,Slovakia -2301,Dino Radja,211,102,,1967,Split,Croatia -2302,Isaiah Rider,196,97,University of Nevada - Las Vegas,1971,Oakland,California -2303,Eric Riley,213,111,University of Michigan,1970,Cleveland,Ohio -2304,James Robinson,198,95,University of Nevada - Las Vegas,1955,Los Angeles,California -2305,Rodney Rogers,201,106,Wake Forest University,1971,Durham,North Carolina -2306,Bryon Russell,201,102,California State University - Long Beach,1970,San Bernardino,California -2307,Kevin Thompson,211,117,North Carolina State University,1971,Winston-Salem,North Carolina -2308,Keith Tower,211,113,University of Notre Dame,1970,Libby,Montana -2309,Nick Van,211,113,,1970,, -2310,Rex Walters,193,86,University of Kansas,1970,Omaha,Nebraska -2311,Chris Webber,206,111,University of Michigan,1973,Detroit,Michigan -2312,Matt Wenstrom,216,113,University of North Carolina,1970,Minneapolis,Minnesota -2313,David Wesley,183,86,Baylor University,1970,San Antonio,Texas -2314,Chris Whitney,183,76,Clemson University,1971,Hopkinsville,Kentucky -2315,Aaron Williams,206,99,Xavier University,1971,Evanston,Illinois -2316,Luther Wright,218,122,Seton Hall University,1971,Jersey City,New Jersey -2317,Derrick Alston,211,102,Duquesne University,1972,Bronx,New York -2318,Darrell Armstrong,183,77,Fayetteville State University,1968,Gastonia,North Carolina -2319,Sergei Bazarevich,188,76,,1965,Moscow,Russia -2320,Elmer Bennett,183,77,University of Notre Dame,1970,Evanston,Illinois -2321,James Blackwell,183,86,Dartmouth College,1968,Mount Kisco,New York -2322,Tim Breaux,201,97,University of Wyoming,1970,Baton Rouge,Louisiana -2323,Chris Childs,190,88,Boise State University,1967,Bakersfield,California -2324,Bill Curley,206,99,Boston College,1972,Boston,Massachusetts -2325,Yinka Dare,213,120,George Washington University,1972,Kano,Nigeria -2326,Tony Dumas,198,86,University of Missouri-Kansas City,1972,Chicago,Illinois -2327,Howard Eisley,188,80,Boston College,1972,Detroit,Michigan -2328,Matt Fish,211,106,University of North Carolina at Wilmington,1969,Washington,Iowa -2329,Brian Grant,206,115,Xavier University,1972,Columbus,Ohio -2330,Darrin Hancock,201,92,University of Kansas,1971,Birmingham,Alabama -2331,Jerome Harmon,193,86,University of Louisville,1969,Gary,Indiana -2332,Grant Hill,203,102,Duke University,1972,Dallas,Texas -2333,Tom Hovasse,203,92,Pennsylvania State University,1967,Durango,Colorado -2334,Juwan Howard,206,108,University of Michigan,1973,Chicago,Illinois -2335,Askia Jones,196,90,Kansas State University,1971,Philadelphia,Pennsylvania -2336,Eddie Jones,208,102,University of Nevada - Reno,1956,Fort Rucker,Alabama -2337,Jason Kidd,193,92,University of California,1973,San Francisco,California -2338,Antonio Lang,211,111,University of Arkansas,1966,Pine Bluff,Arkansas -2339,Ryan Lorthridge,193,86,Jackson State University,1972,Nashville,Tennessee -2340,Donyell Marshall,206,98,University of Connecticut,1973,Reading,Pennsylvania -2341,Darrick Martin,180,77,University of California - Los Angeles,1971,Denver,Colorado -2342,Jim McIlvaine,216,108,Marquette University,1972,Racine,Wisconsin -2343,Aaron McKie,196,94,Temple University,1972,Philadelphia,Pennsylvania -2344,Anthony Miller,206,102,Michigan State University,1971,Benton Harbor,Michigan -2345,Greg Minor,198,95,University of Louisville,1971,Sandersville,Georgia -2346,Eric Mobley,211,106,University of Pittsburgh,1970,Bronx,New York -2347,Eric Montross,213,122,University of North Carolina,1971,Indianapolis,Indiana -2348,Dwayne Morton,201,88,University of Louisville,1971,Louisville,Kentucky -2349,Lamond Murray,201,107,University of California,1973,Pasadena,California -2350,Ivano Newbill,206,111,Georgia Institute of Technology,1970,Sedalia,Missouri -2351,Julius Nwosu,208,115,Liberty University,1971,Nkwere,Nigeria -2352,Wesley Person,198,88,Auburn University,1971,Crenshaw,Alabama -2353,Derrick Phelps,193,82,University of North Carolina,1972,Queens,New York -2354,Eric Piatkowski,201,97,University of Nebraska,1970,Steubenville,Ohio -2355,Eldridge Recasner,190,86,University of Washington,1967,New Orleans,Louisiana -2356,Khalid Reeves,190,90,University of Arizona,1972,Queens,New York -2357,Glenn Robinson,201,102,Purdue University,1973,Gary,Indiana -2358,Carlos Rogers,211,99,Tennessee State University,1971,Detroit,Michigan -2359,Jalen Rose,203,95,University of Michigan,1973,Detroit,Michigan -2360,Clifford Rozier,211,111,University of Louisville,1972,Bradenton,Florida -2361,Trevor Ruffin,185,83,University of Hawaii,1970,Buffalo,New York -2362,Dickey Simpkins,206,112,Providence College,1972,Fort Washington,Maryland -2363,Reggie Slater,201,97,University of Wyoming,1970,Houston,Texas -2364,Mark Strickland,206,95,Temple University,1970,Atlanta,Georgia -2365,Aaron Swinson,196,104,Auburn University,1971,Brunswick,Georgia -2366,Zan Tabak,213,111,,1970,Split,Croatia -2367,Brooks Thompson,193,87,Oklahoma State University,1970,Dallas,Texas -2368,Anthony Tucker,203,99,Wake Forest University,1969,Washington,District of Columbia -2369,B.J. Tyler,203,99,,1969,, -2370,Fred Vinson,193,86,Georgia Institute of Technology,1971,Murfreesboro,North Carolina -2371,Charlie Ward,188,86,Florida State University,1970,Thomasville,Georgia -2372,Jamie Watson,201,86,University of South Carolina,1972,Elm City,North Carolina -2373,Monty Williams,203,102,University of Notre Dame,1971,Fredericksburg,Virginia -2374,Dontonio Wingfield,203,116,University of Cincinnati,1974,Albany,Georgia -2375,Sharone Wright,211,117,Clemson University,1973,Macon,Georgia -2376,Cory Alexander,185,83,University of Virginia,1973,Waynesboro,Virginia -2377,Jerome Allen,193,83,University of Pennsylvania,1973,Philadelphia,Pennsylvania -2378,John Amaechi,208,122,Pennsylvania State University,1970,Boston,Massachusetts -2379,Ashraf Amaya,203,104,Southern Illinois University,1971,Oak Park,Illinois -2380,Brent Barry,198,83,Oregon State University,1971,Hempstead,New York -2381,Corey Beck,185,86,University of Arkansas,1971,Memphis,Tennessee -2382,Mario Bennett,198,106,Arizona State University,1973,Denton,Texas -2383,Travis Best,180,82,Georgia Institute of Technology,1972,Springfield,Massachusetts -2384,Melvin Booker,185,83,University of Missouri,1972,Pascagoula,Mississippi -2385,Donnie Boyce,196,88,University of Colorado,1973,Chicago,Illinois -2386,Marques Bragg,203,104,Providence College,1970,East Orange,New Jersey -2387,Junior Burrough,203,109,University of Virginia,1973,Charlotte,North Carolina -2388,Jason Caffey,203,115,University of Alabama,1973,Mobile,Alabama -2389,Chris Carr,196,93,Southern Illinois University,1974,Ironton,Missouri -2390,Randolph Childress,188,85,Wake Forest University,1972,Washington,District of Columbia -2391,Robert Churchwell,198,88,Georgetown University,1972,South Bend,Indiana -2392,Charles Claxton,213,120,University of Georgia,1970,St. Thomas,U.S. Virgin Islands -2393,John Coker,213,114,Boise State University,1971,Richland,Washington -2394,Rastko Cvetkovic,216,117,,1970,Belgrade,Serbia -2395,Sasha Danilovic,196,90,,1970,Sarajevo,Bosnia and Herzegovina -2396,Andrew DeClercq,208,104,University of Florida,1973,Detroit,Michigan -2397,Tyus Edney,178,68,University of California - Los Angeles,1973,Gardena,California -2398,Vincenzo Esposito,190,89,,1969,Caserta,Italy -2399,Michael Finley,201,97,University of Wisconsin,1973,Melrose Park,Illinois -2400,Sherell Ford,201,95,University of Illinois at Chicago,1972,Baton Rouge,Louisiana -2401,Kevin Garnett,211,108,,1976,Mauldin,South Carolina -2402,Anthony Goldwire,185,82,University of Houston,1971,West Palm Beach,Florida -2403,Thomas Hamilton,218,149,University of Pittsburgh,1975,Chicago,Illinois -2404,Alvin Heggs,203,102,University of Texas at Austin,1967,Jacksonville,Florida -2405,Alan Henderson,206,106,Indiana University,1972,Indianapolis,Indiana -2406,Fred Hoiberg,193,92,Iowa State University,1972,Lincoln,Nebraska -2407,Darryl Johnson,201,95,Syracuse University,1970,Morgan City,Louisiana -2408,Frankie King,185,83,Western Carolina University,1972,Baxley,Georgia -2409,Jimmy King,188,79,University of Tulsa,1941,Tulsa,Oklahoma -2410,Voshon Lenard,193,92,University of Minnesota,1973,Detroit,Michigan -2411,Cedric Lewis,208,106,University of Maryland,1969,Washington,District of Columbia -2412,Martin Lewis,196,95,Seward County Community College,1975,Liberal,Kansas -2413,Rich Manning,211,114,University of Washington,1970,Tacoma,Washington -2414,Donny Marshall,206,98,University of Connecticut,1973,Reading,Pennsylvania -2415,Cuonzo Martin,196,96,Purdue University,1971,St. Louis,Missouri -2416,Clint McDaniel,193,81,University of Arkansas,1972,Tulsa,Oklahoma -2417,Antonio McDyess,206,99,University of Alabama,1974,Quitman,Mississippi -2418,Loren Meyer,208,116,Iowa State University,1972,Emmetsburg,Iowa -2419,Lawrence Moten,196,83,Syracuse University,1972,Washington,District of Columbia -2420,Todd Mundt,213,113,Delta State University,1970,Iowa City,Iowa -2421,Howard Nathan,180,79,University of Louisiana at Monroe,1972,Peoria,Illinois -2422,Ed O'Bannon,203,100,University of California - Los Angeles,1972,Los Angeles,California -2423,Greg Ostertag,218,127,University of Kansas,1973,Dallas,Texas -2424,Cherokee Parks,196,95,Idaho State University,1973,, -2425,Theo Ratliff,208,102,University of Wyoming,1973,Demopolis,Alabama -2426,Bryant Reeves,213,124,Oklahoma State University,1973,Fort Smith,Arkansas -2427,Don Reid,203,113,Georgetown University,1973,Washington,District of Columbia -2428,Terrence Rencher,190,83,University of Texas at Austin,1973,Bronx,New York -2429,Shawn Respert,185,88,Michigan State University,1972,Detroit,Michigan -2430,Lou Roe,201,99,University of Massachusetts Amherst,1972,Atlantic City,New Jersey -2431,Stefano Rusconi,206,108,,1968,Bassanod'Grappa,Italy -2432,Arvydas Sabonis*,221,126,,1964,Kaunas,Lithuania -2433,Joe Smith,213,106,University of Southern Colorado,1944,Columbus,Mississippi -2434,Eric Snow,190,86,Michigan State University,1973,Canton,Ohio -2435,Jerry Stackhouse,198,98,University of North Carolina,1974,Kinston,North Carolina -2436,Damon Stoudamire,178,77,University of Arizona,1973,Portland,Oregon -2437,Bob Sura,196,90,Florida State University,1973,Wilkes-Barre,Pennsylvania -2438,Larry Sykes,206,115,Xavier University,1973,Toledo,Ohio -2439,Kurt Thomas,206,104,Texas Christian University,1972,Dallas,Texas -2440,Gary Trent,203,113,Ohio University,1974,Columbus,Ohio -2441,Logan Vander,203,97,University of Wisconsin-Green Bay,1971,Valders,Wisconsin -2442,David Vaughn,211,99,Oral Roberts University,1952,Nashville,Tennessee -2443,Rasheed Wallace,208,102,University of North Carolina,1974,Philadelphia,Pennsylvania -2444,Jeff Webster,203,105,University of Oklahoma,1971,Pine Bluff,Arkansas -2445,Dwayne Whitfield,206,108,Jackson State University,1972,Aberdeen,Mississippi -2446,Eric Williams,203,99,Providence College,1972,Newark,New Jersey -2447,Corliss Williamson,188,86,Oklahoma State University,1970,Twiggs,Georgia -2448,George Zidek,213,113,University of California - Los Angeles,1973,Zlin,Czech Republic -2449,Shareef Abdur-Rahim,206,102,University of California,1976,Marietta,Georgia -2450,Ray Allen,203,99,Florida State University,1965,Milton,Florida -2451,Shandon Anderson,198,94,University of Georgia,1973,Atlanta,Georgia -2452,Dexter Boney,193,83,University of Nevada - Las Vegas,1970,Wilmington,Delaware -2453,Bruce Bowen,201,83,California State University - Fullerton,1971,Merced,California -2454,Mark Bradtke,208,120,,1968,Adelaide,Australia -2455,Marcus Brown,190,83,Murray State University,1974,West Memphis,Arkansas -2456,Kobe Bryant,198,96,,1978,Philadelphia,Pennsylvania -2457,Marcus Camby,211,99,University of Massachusetts Amherst,1974,Hartford,Connecticut -2458,Jimmy Carruth,208,120,Virginia Polytechnic Institute and State University,1969,El Paso,Texas -2459,Erick Dampier,211,120,Mississippi State University,1975,Jackson,Mississippi -2460,Ben Davis,206,108,University of Arizona,1972,Vero Beach,Florida -2461,Emanual Davis,193,88,Delaware State University,1968,Philadelphia,Pennsylvania -2462,Tony Delk,185,85,University of Kentucky,1974,Covington,Tennessee -2463,Aleksandar Djordjevic,188,89,,1967,Belgrade,Serbia -2464,Nate Driggers,196,97,University of Montevallo,1973,Chicago,Illinois -2465,Brian Evans,203,99,Indiana University,1973,Rockford,Illinois -2466,Jamie Feick,206,115,Michigan State University,1974,Lexington,Ohio -2467,Derek Fisher,185,90,University of Arkansas at Little Rock,1974,Little Rock,Arkansas -2468,Todd Fuller,193,81,Pepperdine University,1958,Detroit,Michigan -2469,Dean Garrett,208,102,Indiana University,1966,Los Angeles,California -2470,Reggie Geary,188,84,University of Arizona,1973,Trenton,New Jersey -2471,Devin Gray,201,108,Clemson University,1972,Baltimore,Maryland -2472,Evric Gray,201,106,University of Nevada - Las Vegas,1969,Bloomington,California -2473,Darvin Ham,201,99,Texas Tech University,1973,Saginaw,Michigan -2474,Steve Hamer,213,111,University of Tennessee,1973,Memphis,Tennessee -2475,Othella Harrington,206,106,Georgetown University,1974,Jackson,Mississippi -2476,Michael Hawkins,183,80,Xavier University,1972,Canton,Ohio -2477,Shane Heal,183,81,,1970,Melbourne,Australia -2478,Mark Hendrickson,206,99,Washington State University,1974,Mount Vernon,Washington -2479,Allen Iverson*,183,74,Georgetown University,1975,Hampton,Virginia -2480,Kerry Kittles,196,81,Villanova University,1974,Dayton,Ohio -2481,Travis Knight,213,106,University of Connecticut,1974,Salt Lake City,Utah -2482,Priest Lauderdale,224,147,Central State University,1973,Chicago,Illinois -2483,Randy Livingston,193,94,Louisiana State University,1975,New Orleans,Louisiana -2484,Horacio Llamas,211,129,Grand Canyon University,1973,El Rosario,Mexico -2485,Matt Maloney,190,87,University of Pennsylvania,1971,Silver Spring,Maryland -2486,Stephon Marbury,188,81,Georgia Institute of Technology,1977,Brooklyn,New York -2487,Walter McCarty,208,104,University of Kentucky,1974,Evansville,Indiana -2488,Amal McCaskill,211,106,Marquette University,1973,Maywood,Illinois -2489,Jeff McInnis,193,86,University of North Carolina,1974,Charlotte,North Carolina -2490,Martin Muursepp,206,106,,1974,Tallinn,Estonia -2491,Steve Nash,190,88,Santa Clara University,1974,Johannesburg,South Africa -2492,Ruben Nembhard,190,94,Weber State University,1972,Bronx,New York -2493,Gaylon Nickerson,190,86,Northwestern Oklahoma State University,1969,Osecola,Arkansas -2494,Moochie Norris,185,79,University of West Florida,1973,Washington,District of Columbia -2495,Jermaine O'Neal,211,102,,1978,Columbia,South Carolina -2496,Ray Owes,206,101,University of Arizona,1972,San Bernardino,California -2497,Vitaly Potapenko,208,127,Wright State University,1975,Kiev,Ukraine -2498,Chris Robinson,196,90,Western Kentucky University,1974,Columbus,Georgia -2499,Roy Rogers,201,106,Wake Forest University,1971,Durham,North Carolina -2500,Malik Rose,201,113,Drexel University,1974,Philadelphia,Pennsylvania -2501,Kevin Salvadori,213,104,University of North Carolina,1970,Wheeling,West Virginia -2502,Jason Sasser,201,102,Texas Tech University,1974,Denton,Texas -2503,Brent Scott,208,113,Rice University,1971,Jackson,Michigan -2504,James Scott,198,81,St. John's University,1972,Paterson,New Jersey -2505,Shawnelle Scott,208,113,St. John's University,1972,New York,New York -2506,Stevin Smith,201,90,Michigan State University,1969,Highland Park,Michigan -2507,Matt Steigenga,201,102,Michigan State University,1970,Grand Rapids,Michigan -2508,Joe Stephens,201,95,University of Arkansas at Little Rock,1973,Riverside,California -2509,Erick Strickland,190,95,University of Nebraska,1973,Opelika,Alabama -2510,Brett Szabo,211,104,Augustana College (SD),1968,Postville,Iowa -2511,Antoine Walker,193,86,Niagara University,1955,Long Island City,New York -2512,Samaki Walker,206,108,University of Louisville,1976,Columbus,Ohio -2513,Ben Wallace,206,108,Virginia Union University,1974,White Hall,Alabama -2514,John Wallace,203,102,Syracuse University,1974,Rochester,New York -2515,Donald Whiteside,178,72,Northern Illinois University,1969,Chicago,Illinois -2516,Jerome Williams,206,93,Georgetown University,1973,Washington,District of Columbia -2517,Lorenzen Wright,188,92,Colorado State University,1945,Newark,New Jersey -2518,Tariq Abdul-Wahad,198,101,San Jose State University,1974,Maisons Alfort,France -2519,Derek Anderson,196,87,University of Kentucky,1974,Louisville,Kentucky -2520,Chris Anstey,213,112,,1975,Melbourne,Australia -2521,Drew Barry,196,86,Georgia Institute of Technology,1973,Oakland,California -2522,Tony Battie,211,104,Texas Tech University,1976,Dallas,Texas -2523,Chauncey Billups,190,91,University of Colorado,1976,Denver,Colorado -2524,Etdrick Bohannon,206,99,Auburn University at Montgomery,1973,San Bernardino,California -2525,Keith Booth,198,102,University of Maryland,1974,Baltimore,Maryland -2526,Rick Brunson,193,86,Temple University,1972,Syracuse,New York -2527,Kelvin Cato,211,115,Iowa State University,1974,Atlanta,Georgia -2528,Keith Closs,221,96,Central Connecticut State University,1976,Hartford,Connecticut -2529,James Collins,193,88,Florida State University,1973,Jacksonville,Florida -2530,James Cotton,201,90,University of Wyoming,1924,Miles City,Montana -2531,Chris Crawford,206,106,Marquette University,1975,Kalamazoo,Michigan -2532,Austin Croshere,206,106,Providence College,1975,Los Angeles,California -2533,William Cunningham,211,113,Temple University,1974,Augusta,Georgia -2534,Antonio Daniels,193,88,Bowling Green State University,1975,Columbus,Ohio -2535,Tim Duncan,211,113,Wake Forest University,1976,St. Croix,U.S. Virgin Islands -2536,Tony Farmer,206,110,University of Nebraska,1970,Los Angeles,California -2537,Danny Fortson,201,117,University of Cincinnati,1976,Philadelphia,Pennsylvania -2538,Adonal Foyle,208,113,Colgate University,1975,Canouan,Saint Vincent and the Grenadines -2539,Lawrence Funderburke,206,104,Ohio State University,1970,Columbus,Ohio -2540,Chris Garner,178,70,University of Memphis,1975,Memphis,Tennessee -2541,Kiwane Garris,188,83,University of Illinois at Urbana-Champaign,1974,Chicago,Illinois -2542,Ed Gray,190,95,University of California,1975,Riverside,California -2543,Derek Grimm,206,104,University of Missouri,1974,Peoria,Illinois -2544,Reggie Hanson,203,88,University of Kentucky,1968,Charlotte,North Carolina -2545,Jerald Honeycutt,206,111,Tulane University,1974,Shreveport,Louisiana -2546,Troy Hudson,185,77,Southern Illinois University,1976,Carbondale,Illinois -2547,Zydrunas Ilgauskas,221,107,,1975,Kaunas,Lithuania -2548,Bobby Jackson,185,83,University of Minnesota,1973,East Spencer,North Carolina -2549,Anthony Johnson,196,97,University of Portland,1932,Los Angeles,California -2550,Dontae' Jones,203,99,Mississippi State University,1975,Nashville,Tennessee -2551,Brevin Knight,178,78,Stanford University,1975,Livingston,New Jersey -2552,Rusty LaRue,188,95,Wake Forest University,1973,Winston-Salem,North Carolina -2553,Jason Lawson,211,108,Villanova University,1974,Philadelphia,Pennsylvania -2554,Michael McDonald,208,105,University of New Orleans,1969,Longview,Texas -2555,Tracy McGrady,203,95,,1979,Bartow,Florida -2556,Ron Mercer,201,95,University of Kentucky,1976,Nashville,Tennessee -2557,Marko Milic,198,106,,1977,Kranj,Slovenia -2558,Jeff Nordgaard,201,102,University of Wisconsin-Green Bay,1973,Dawson,Minnesota -2559,Charles O'Bannon,196,94,University of California - Los Angeles,1975,Bellflower,California -2560,Kevin Ollie,193,88,University of Connecticut,1972,Dallas,Texas -2561,Anthony Parker,198,97,Bradley University,1975,Naperville,Illinois -2562,Scot Pollard,211,120,University of Kansas,1975,Murray,Utah -2563,Mark Pope,208,106,University of Kentucky,1972,Omaha,Nebraska -2564,Rodrick Rhodes,198,102,University of Southern California,1973,Jersey City,New Jersey -2565,Shea Seals,196,95,University of Tulsa,1975,Tulsa,Oklahoma -2566,God Shammgod,183,76,Providence College,1976,New York,New York -2567,Kebu Stewart,203,108,California State University - Bakersfield,1973,Brooklyn,New York -2568,Michael Stewart,208,104,University of California,1975,Cucq-Trepied-Stella-Plage,France -2569,Ed Stokes,213,119,University of Arizona,1971,Syracuse,New York -2570,Johnny Taylor,206,99,University of Tennessee at Chattanooga,1974,Chattanooga,Tennessee -2571,Maurice Taylor,206,117,University of Michigan,1976,Detroit,Michigan -2572,John Thomas,198,92,Marquette University,1948,Canton,Georgia -2573,Tim Thomas,208,104,Villanova University,1977,Paterson,New Jersey -2574,Keith Van,208,104,,1977,, -2575,Jacque Vaughn,185,86,University of Kansas,1975,Los Angeles,California -2576,Eric Washington,193,86,University of Alabama,1974,Pearl,Mississippi -2577,Bubba Wells,196,104,Austin Peay State University,1974,Russellville,Kentucky -2578,DeJuan Wheat,183,74,University of Louisville,1973,Louisville,Kentucky -2579,Alvin Williams,198,90,Drake University,1948,, -2580,Brandon Williams,198,97,Davidson College,1975,Collinston,Louisiana -2581,Travis Williams,198,97,South Carolina State University,1969,Columbia,South Carolina -2582,Peter Aluma,208,117,Liberty University,1973,Lagos,Nigeria -2583,Toby Bailey,198,96,University of California - Los Angeles,1975,Los Angeles,California -2584,LaMark Baker,185,79,Ohio State University,1969,Dayton,Ohio -2585,Corey Benjamin,198,90,Oregon State University,1978,Compton,California -2586,Mike Bibby,185,86,University of Arizona,1978,Cherry Hill,New Jersey -2587,Earl Boykins,165,61,Eastern Michigan University,1976,Cleveland,Ohio -2588,Gerald Brown,198,86,Wayne State University,1935,, -2589,Cory Carr,190,95,Texas Tech University,1975,Fordyce,Arkansas -2590,Vince Carter,198,99,University of North Carolina,1977,Daytona Beach,Florida -2591,Keon Clark,211,99,University of Nevada - Las Vegas,1975,Danville,Illinois -2592,Kornel David,206,106,,1971,Hungary, -2593,Ricky Davis,198,88,University of Iowa,1979,Las Vegas,Nevada -2594,Michael Dickerson,196,86,University of Arizona,1975,Greenville,South Carolina -2595,Michael Doleac,211,118,University of Utah,1977,San Antonio,Texas -2596,Bryce Drew,188,83,Valparaiso University,1974,Baton Rouge,Louisiana -2597,Marlon Garnett,188,84,Santa Clara University,1975,Los Angeles,California -2598,Pat Garrity,206,107,University of Notre Dame,1976,Las Vegas,Nevada -2599,Paul Grant,213,111,University of Wisconsin,1974,Pittsburgh,Pennsylvania -2600,Matt Harpring,201,104,Georgia Institute of Technology,1976,Cincinnati,Ohio -2601,Al Harrington,206,104,,1980,Orange,New Jersey -2602,J.R. Henderson,206,104,,1980,, -2603,Larry Hughes,196,83,Saint Louis University,1979,St. Louis,Missouri -2604,Randell Jackson,188,86,University of California - Los Angeles,1962,Los Angeles,California -2605,Sam Jacobson,193,97,University of Minnesota,1975,Cottage Grove,Minnesota -2606,Jerome James,213,136,Florida Agricultural and Mechanical University,1975,Tampa,Florida -2607,Antawn Jamison,203,101,University of North Carolina,1976,Shreveport,Louisiana -2608,Damon Jones,190,83,University of Houston,1976,Galveston,Texas -2609,Jonathan Kerner,211,111,East Carolina University,1974,Atlanta,Georgia -2610,Gerard King,183,79,University of Charleston,1928,Charleston,West Virginia -2611,Raef LaFrentz,211,108,University of Kansas,1976,Hampton,Iowa -2612,Rashard Lewis,198,90,La Salle University,1963,Philadelphia,Pennsylvania -2613,Felipe Lopez,196,90,St. John's University,1974,Santo Domingo,Dominican Republic -2614,Tyronn Lue,183,79,University of Nebraska,1977,Mexico,Missouri -2615,Sean Marks,208,113,University of California,1975,Auckland,New Zealand -2616,Kelly McCarty,201,90,University of Southern Mississippi,1975,Chicago,Illinois -2617,Jelani McCoy,208,111,University of California - Los Angeles,1977,Oakland,California -2618,Roshown McLeod,203,100,Duke University,1975,Jersey City,New Jersey -2619,Brad Miller,211,110,Purdue University,1976,Fort Wayne,Indiana -2620,Cuttino Mobley,193,86,University of Rhode Island,1975,Philadelphia,Pennsylvania -2621,Nazr Mohammed,208,100,University of Kentucky,1977,Chicago,Illinois -2622,Mikki Moore,211,102,University of Nebraska,1975,Orangeburg,South Carolina -2623,Makhtar N'Diaye,203,111,University of North Carolina,1973,Dakar,Senegal -2624,Tyrone Nesby,198,102,University of Nevada - Las Vegas,1976,Cairo,Illinois -2625,Rasho Nesterovic,213,112,,1976,Ljubljana,Slovenia -2626,Dirk Nowitzki,213,111,,1978,Wurzburg,Germany -2627,Michael Olowokandi,213,122,University of the Pacific,1975,Lagos,Nigeria -2628,Andrae Patterson,206,107,Indiana University,1975,Riverside,California -2629,Ruben Patterson,196,101,University of Cincinnati,1975,Cleveland,Ohio -2630,Paul Pierce,201,106,University of Kansas,1977,Oakland,California -2631,Casey Shaw,211,117,University of Toledo,1975,Lebanon,Ohio -2632,Jeffrey Sheppard,190,86,University of Kentucky,1974,Marietta,Georgia -2633,Miles Simon,190,91,University of Arizona,1975,Stockholm,Sweden -2634,Alvin Sims,193,106,University of Louisville,1974,Paris,Kentucky -2635,Brian Skinner,206,115,Baylor University,1976,Temple,Texas -2636,Ryan Stack,211,97,University of South Carolina,1975,Nashville,Tennessee -2637,Vladimir Stepania,213,107,,1976,Georgia, -2638,Peja Stojakovic,206,99,,1977,Slavoska Pozega ,Croatia -2639,Bruno Sundov,218,99,,1980,Split,Croatia -2640,Robert Traylor,203,128,University of Michigan,1977,Detroit,Michigan -2641,Bonzi Wells,196,95,Ball State University,1976,Muncie,Indiana -2642,Tyson Wheeler,178,74,University of Rhode Island,1975,New Britain,Connecticut -2643,Jahidi White,206,131,Georgetown University,1976,St. Louis,Missouri -2644,Jason Williams,206,108,St. John's University,1968,Ritter,South Carolina -2645,Shammond Williams,185,91,University of North Carolina,1975,Bronx,New York -2646,Trevor Winter,213,124,University of Minnesota,1974,Slayton,Minnesota -2647,Korleone Young,201,96,,1978,Wichita,Kansas -2648,Rafer Alston,188,77,California State University - Fresno,1976,New York,New York -2649,Chucky Atkins,180,72,University of South Florida,1974,Orlando,Florida -2650,William Avery,188,89,Duke University,1979,Augusta,Georgia -2651,Jonathan Bender,211,91,,1981,Picayune,Mississippi -2652,Calvin Booth,211,104,Pennsylvania State University,1976,Reynoldsburg,Ohio -2653,Lazaro Borrell,203,99,,1972,Santa Clara,Cuba -2654,Cal Bowdler,208,111,Old Dominion University,1977,Sharps,Virginia -2655,Ryan Bowen,201,97,University of Iowa,1975,Fort Madison,Iowa -2656,Ira Bowman,196,88,University of Pennsylvania,1973,Newark,New Jersey -2657,A.J. Bramlett,196,88,,1973,, -2658,Elton Brand,203,124,Duke University,1979,Cortlandt Manor,New York -2659,Greg Buckner,193,95,Clemson University,1976,Hopkinsville,Kentucky -2660,Rodney Buford,196,85,Creighton University,1977,Milwaukee,Wisconsin -2661,Anthony Carter,185,86,University of Hawaii,1975,Milwaukee,Wisconsin -2662,John Celestand,193,80,Villanova University,1977,Houston,Texas -2663,Vonteego Cummings,190,83,University of Pittsburgh,1976,Thomson,Georgia -2664,Baron Davis,190,94,University of California - Los Angeles,1979,Los Angeles,California -2665,Derrick Dial,193,83,Eastern Michigan University,1975,Detroit,Michigan -2666,Obinna Ekezie,206,122,University of Maryland,1975,Port Harcourt,Nigeria -2667,Evan Eschmeyer,211,115,Northwestern University,1975,New Knoxville,Ohio -2668,Jeff Foster,211,107,Texas State University,1977,San Antonio,Texas -2669,Steve Francis,190,88,University of Maryland,1977,Silver Spring,Maryland -2670,Devean George,203,99,Augsburg College,1977,Minneapolis,Minnesota -2671,Dion Glover,196,103,Georgia Institute of Technology,1978,Marietta,Georgia -2672,Adrian Griffin,196,98,Seton Hall University,1974,Wichita,Kansas -2673,Richard Hamilton,198,83,University of Connecticut,1978,Coatesville,Pennsylvania -2674,Chris Herren,188,89,California State University - Fresno,1975,Fall River,Massachusetts -2675,Derek Hood,203,100,University of Arkansas,1976,Kansas City,Missouri -2676,Rick Hughes,196,97,Loyola University of Chicago,1962,Chicago,Illinois -2677,Jermaine Jackson,193,92,University of Detroit Mercy,1976,Detroit,Michigan -2678,Tim James,201,96,University of Miami,1976,Miami,Florida -2679,Harold Jamison,203,117,Clemson University,1976,Orangeburg,South Carolina -2680,DeMarco Johnson,193,83,Pepperdine University,1954,San Pedro,California -2681,Jumaine Jones,203,98,University of Georgia,1979,Cocoa,Florida -2682,Lari Ketner,206,125,University of Massachusetts Amherst,1977,Philadelphia,Pennsylvania -2683,Trajan Langdon,190,89,Duke University,1976,Palo Alto,California -2684,Quincy Lewis,201,97,University of Minnesota,1977,Little Rock,Arkansas -2685,Todd MacCulloch,213,127,University of Washington,1976,Winnipeg,Canada -2686,Corey Maggette,198,98,Duke University,1979,Melrose Park,Illinois -2687,Shawn Marion,201,99,University of Nevada - Las Vegas,1978,Waukegan,Illinois -2688,Andre Miller,206,102,Michigan State University,1971,Benton Harbor,Michigan -2689,Jason Miskiri,188,79,George Mason University,1975,Georgetown,Guyana -2690,Lamar Odom,208,99,University of Rhode Island,1979,Jamaica,New York -2691,Scott Padgett,206,108,University of Kentucky,1976,Louisville,Kentucky -2692,Milt Palacio,190,88,Colorado State University,1978,Los Angeles,California -2693,James Posey,203,97,Xavier University,1977,Cleveland,Ohio -2694,Laron Profit,196,92,University of Maryland,1977,Charleston,South Carolina -2695,Aleksandar Radojevic,221,113,Barton County Community College,1976,Herceg Novi,Montenegro -2696,Ryan Robertson,196,86,University of Kansas,1976,Lawton,Oklahoma -2697,Eddie Robinson,203,95,University of Central Oklahoma,1976,Flint,Michigan -2698,Michael Ruffin,206,111,University of Tulsa,1977,Denver,Colorado -2699,Wally Szczerbiak,198,95,George Washington University,1949,Pittsburgh,Pennsylvania -2700,Jason Terry,188,83,University of Arizona,1977,Seattle,Washington -2701,Jamel Thomas,198,97,Providence College,1973,Brooklyn,New York -2702,Kenny Thomas,201,118,University of New Mexico,1977,Atlanta,Georgia -2703,Mirsad Turkcan,206,107,,1976,Novi Pazar,Serbia -2704,Wayne Turner,188,86,University of Kentucky,1976,Boston,Massachusetts -2705,Dedric Willoughby,190,81,Iowa State University,1974,New Orleans,Louisiana -2706,Metta World,190,81,,1974,, -2707,Tim Young,213,99,Stanford University,1976,Santa Cruz,California -2708,Courtney Alexander,185,83,University of Virginia,1973,Waynesboro,Virginia -2709,Dalibor Bagaric,216,115,,1980,Croatia, -2710,Erick Barkley,185,80,St. John's University,1978,Queens,New York -2711,Raja Bell,196,92,Florida International University,1976,St. Croix,U.S. Virgin Islands -2712,Mark Blount,213,104,University of Pittsburgh,1975,Dobbs Ferry,New York -2713,Brian Cardinal,203,111,Purdue University,1977,Tolono,Illinois -2714,Mateen Cleaves,188,92,Michigan State University,1977,Flint,Michigan -2715,Jason Collier,193,88,Florida State University,1973,Jacksonville,Florida -2716,Sean Colson,183,79,University of North Carolina at Charlotte,1975,Philadelphia,Pennsylvania -2717,Jamal Crawford,196,90,University of Michigan,1980,Seattle,Washington -2718,Keyon Dooling,190,88,University of Missouri,1980,Ft. Lauderdale,Florida -2719,Khalid El-Amin,178,90,University of Connecticut,1979,Minneapolis,Minnesota -2720,Marcus Fizer,206,118,Iowa State University,1978,Detroit,Michigan -2721,Ruben Garces,206,111,Providence College,1973,Colon,Panama -2722,Eddie Gill,183,86,Weber State University,1978,Aurora,Colorado -2723,Steve Goodrich,208,99,Princeton University,1976,Philadelphia,Pennsylvania -2724,A.J. Guyton,208,99,,1976,, -2725,Zendon Hamilton,211,113,St. John's University,1975,Floral Park,New York -2726,Jason Hart,190,83,Syracuse University,1978,Los Angeles,California -2727,Donnell Harvey,203,99,University of Florida,1980,Shellman,Georgia -2728,Eddie House,185,81,Arizona State University,1978,Berkeley,California -2729,Marc Jackson,185,81,St. John's University,1965,Brooklyn,New York -2730,Stephen Jackson,190,83,University of Alabama at Birmingham,1970,Tuskegee,Alabama -2731,DerMarr Johnson,193,83,Pepperdine University,1954,San Pedro,California -2732,Garth Joseph,218,142,College of Saint Rose,1973,Roseau,Dominica -2733,Dan Langhi,211,99,Vanderbilt University,1977,Chicago,Illinois -2734,Art Long,206,113,University of Cincinnati,1972,Rochester,New York -2735,Mark Madsen,206,108,Stanford University,1976,Walnut Creek,California -2736,Jamaal Magloire,211,117,University of Kentucky,1978,Toronto,Canada -2737,Kenyon Martin,206,106,University of Cincinnati,1977,Saginaw,Michigan -2738,Desmond Mason,201,101,Oklahoma State University,1977,Waxahachie,Texas -2739,Dan McClintock,213,122,Northern Arizona University,1977,Fountain Valley,California -2740,Paul McPherson,193,95,DePaul University,1978,Chicago,Illinois -2741,Stanislav Medvedenko,208,113,,1979,Karapyshi,Ukraine -2742,Chris Mihm,213,120,University of Texas at Austin,1979,Milwaukee,Wisconsin -2743,Darius Miles,206,95,,1981,Belleville,Illinois -2744,Mike Miller,203,98,University of Florida,1980,Mitchell,South Dakota -2745,Jerome Moiso,208,106,University of California - Los Angeles,1978,Paris,France -2746,Hanno Mottola,211,112,University of Utah,1976,Helsinki,Finland -2747,Mamadou N'Diaye,203,111,University of North Carolina,1973,Dakar,Senegal -2748,Lee Nailon,206,107,Texas Christian University,1975,South Bend,Indiana -2749,Eduardo Najera,203,108,University of Oklahoma,1976,Meoqui,Mexico -2750,Ira Newble,201,99,Miami University,1975,Southfield,Michigan -2751,Olumide Oyedeji,208,108,,1981,Ibadan,Nigeria -2752,Andy Panko,206,100,Lebanon Valley College,1977,Harrisburg,Pennsylvania -2753,Mike Penberthy,190,83,Master's College,1974,Los Gatos,California -2754,Morris Peterson,201,98,Michigan State University,1977,Flint,Michigan -2755,Chris Porter,201,98,Auburn University,1978,Abbeville,Alabama -2756,Lavor Postell,196,97,St. John's University,1978,Albany,Georgia -2757,Joel Przybilla,216,115,University of Minnesota,1979,Monticello,Minnesota -2758,Michael Redd,198,99,Ohio State University,1979,Columbus,Ohio -2759,Quentin Richardson,198,101,DePaul University,1980,Chicago,Illinois -2760,Terrance Roberson,201,97,California State University - Fresno,1976,Saginaw,Michigan -2761,Jamal Robinson,198,95,University of Nevada - Las Vegas,1955,Los Angeles,California -2762,Soumaila Samake,213,104,,1978,Bougouni,Mali -2763,Pepe Sanchez,193,88,Temple University,1977,Bahia Blanca,Argentina -2764,Daniel Santiago,216,116,Saint Vincent College,1976,Lubbock,Texas -2765,Jabari Smith,211,113,Louisiana State University,1977,Atlanta,Georgia -2766,Mike Smith,208,102,Brigham Young University,1965,Rochester,New York -2767,DeShawn Stevenson,196,95,,1981,Fresno,California -2768,Stromile Swift,206,102,Louisiana State University,1979,Shreveport,Louisiana -2769,Dragan Tarlac,208,117,,1973,Belgrade,Serbia -2770,Jake Tsakalidis,218,129,,1979,Rustavi,Georgia -2771,Hedo Turkoglu,208,99,,1979,Istanbul,Turkey -2772,David Vanterpool,196,90,St. Bonaventure University,1973,Daytona Beach,Florida -2773,Jake Voskuhl,211,111,University of Connecticut,1977,Tulsa,Oklahoma -2774,Ruben Wolkowyski,208,122,,1973,Buenos Aries,Argentina -2775,Wang Zhizhi,213,115,,1977,Beijing,China -2776,Malik Allen,208,115,Villanova University,1978,Willingboro,New Jersey -2777,Chris Andersen,208,111,Blinn College,1978,Long Beach,California -2778,Gilbert Arenas,190,86,University of Arizona,1982,Los Angeles,California -2779,Brandon Armstrong,196,85,Pepperdine University,1980,San Francisco,California -2780,Carlos Arroyo,188,91,Florida International University,1979,Fajardo,Puerto Rico -2781,Mengke Bateer,211,131,,1975,Beijing,China -2782,Shane Battier,203,99,Duke University,1978,Birmingham,Michigan -2783,Charlie Bell,190,90,Michigan State University,1979,Flint,Michigan -2784,Ruben Boumtje-Boumtje,213,116,Georgetown University,1978,Edda,Cameroon -2785,Michael Bradley,208,111,Villanova University,1979,Worcester,Massachusetts -2786,Jamison Brewer,193,83,Auburn University,1980,East Point,Georgia -2787,Primoz Brezec,218,114,,1979,Postojna,Slovenia -2788,Damone Brown,188,79,Humboldt State University,1923,Eureka,California -2789,Ernest Brown,213,110,Indian Hills Community College,1979,Bronx,New York -2790,Kedrick Brown,201,100,Okaloosa-Walton Community College,1981,Zachary,Louisiana -2791,Kwame Brown,211,122,,1982,Charleston,South Carolina -2792,Tierre Brown,188,85,McNeese State University,1979,Iowa,Louisiana -2793,Tyson Chandler,216,108,,1982,Hanford,California -2794,Speedy Claxton,180,75,Hofstra University,1978,Queens,New York -2795,Jarron Collins,193,88,Florida State University,1973,Jacksonville,Florida -2796,Jason Collins,193,88,Florida State University,1973,Jacksonville,Florida -2797,Joe Crispin,183,83,Pennsylvania State University,1979,Pitman,New Jersey -2798,Eddy Curry,213,133,,1982,Harvey,Illinois -2799,Samuel Dalembert,211,115,Seton Hall University,1981,Port-Au-Prince,Haiti -2800,DeSagana Diop,213,136,,1982,Dakar,Senegal -2801,Predrag Drobnjak,211,122,,1975,Bijelo Polje,Montenegro -2802,Maurice Evans,196,99,University of Texas at Austin,1978,Wichita,Kansas -2803,Isaac Fontaine,193,95,Washington State University,1975,Sacramento,California -2804,Alton Ford,185,86,Mississippi Valley State University,1971,Greenwood,Mississippi -2805,Joseph Forte,193,87,University of North Carolina,1981,Atlanta,Georgia -2806,Antonis Fotsis,208,99,,1981,Athens,Greece -2807,Tremaine Fowlkes,203,99,California State University - Fresno,1976,Los Angeles,California -2808,Pau Gasol,213,113,,1980,Barcelona,Spain -2809,Eddie Griffin,208,99,Seton Hall University,1982,Philadelphia,Pennsylvania -2810,Tang Hamilton,203,99,Mississippi State University,1978,Jackson,Mississippi -2811,Trenton Hassell,196,90,Austin Peay State University,1979,Clarksville,Tennessee -2812,Kirk Haston,206,109,Indiana University,1979,Loblesville,Tennessee -2813,Brendan Haywood,213,121,University of North Carolina,1979,New York,New York -2814,Steven Hunter,213,99,DePaul University,1981,Chicago,Illinois -2815,Mike James,188,85,Duquesne University,1975,Copaigue,New York -2816,Richard Jefferson,201,105,University of Arizona,1980,Los Angeles,California -2817,Joe Johnson,201,90,University of Iowa,1947,Carthage,Mississippi -2818,Alvin Jones,211,120,Georgia Institute of Technology,1978,Luxembourg,Luxembourg -2819,Andrei Kirilenko,206,99,,1981,Izhevsk,Russia -2820,Terence Morris,206,100,University of Maryland,1979,Frederick,Maryland -2821,Troy Murphy,211,111,University of Notre Dame,1980,Morristown,New Jersey -2822,Dean Oliver,180,81,University of Iowa,1978,Quincy,Illinois -2823,Tony Parker,188,83,,1982,Bruges,Belgium -2824,Vladimir Radmanovic,208,102,,1980,Trebinje Srpska-Bih,Bosnia and Herzegovina -2825,Zach Randolph,206,117,Michigan State University,1981,Marion,Indiana -2826,Zeljko Rebraca,213,116,,1972,Apatin,Serbia -2827,Jason Richardson,198,99,Michigan State University,1981,Saginaw,Michigan -2828,Norm Richardson,196,86,Hofstra University,1979,Brooklyn,New York -2829,Jeryl Sasser,198,90,Southern Methodist University,1979,Dallas,Texas -2830,Kenny Satterfield,188,84,University of Cincinnati,1981,New York,New York -2831,Brian Scalabrine,206,109,University of Southern California,1978,Long Beach,California -2832,Ansu Sesay,206,102,University of Mississippi,1976,Greensboro,North Carolina -2833,Bobby Simmons,201,95,DePaul University,1980,Chicago,Illinois -2834,Leon Smith,208,106,,1980,Chicago,Illinois -2835,Will Solomon,185,83,Clemson University,1978,Hartford,Connecticut -2836,Etan Thomas,206,116,Syracuse University,1978,Harlem,New York -2837,Jamaal Tinsley,190,88,Iowa State University,1978,Brooklyn,New York -2838,Oscar Torres,198,95,,1976,Caracas,Venezuela -2839,Jeff Trepagnier,193,90,University of Southern California,1979,Los Angeles,California -2840,Ratko Varda,216,117,,1979,Bosanska Gradiska,Bosnia and Herzegovina -2841,Gerald Wallace,201,97,University of Alabama,1982,Sylacauga,Alabama -2842,Earl Watson,185,88,University of California - Los Angeles,1979,Kansas City,Kansas -2843,Rodney White,203,95,University of South Alabama,1959,Tuskegee,Alabama -2844,Loren Woods,216,111,University of Arizona,1978,St. Louis,Missouri -2845,Robert Archibald,211,113,University of Illinois at Urbana-Champaign,1980,Paisley,United Kingdom -2846,Maceo Baston,206,97,University of Michigan,1975,Corsicana,Texas -2847,Mike Batiste,203,102,Arizona State University,1977,Long Beach,California -2848,Lonny Baxter,203,117,University of Maryland,1979,Silver Spring,Maryland -2849,Carlos Boozer,206,117,Duke University,1981,Aschaffenburg,Germany -2850,J.R. Bremer,206,117,,1981,, -2851,Devin Brown,185,72,Jacksonville University,1968,Jacksonville,Florida -2852,Pat Burke,211,113,Auburn University,1973,Dublin,Ireland -2853,Caron Butler,201,103,University of Connecticut,1980,Racine,Wisconsin -2854,Rasual Butler,201,97,La Salle University,1979,Philadelphia,Pennsylvania -2855,Dan Dickau,183,86,Gonzaga University,1978,Portland,Oregon -2856,Juan Dixon,190,74,University of Maryland,1978,Baltimore,Maryland -2857,Melvin Ely,208,117,California State University - Fresno,1978,Harvey,Illinois -2858,Reggie Evans,203,111,University of Iowa,1980,Pensacola,Florida -2859,Dan Gadzuric,211,108,University of California - Los Angeles,1978,Den Haag,Netherlands -2860,Manu Ginobili,198,92,,1977,Bahia Blanca,Argentina -2861,Gordan Giricek,198,95,,1977,Zagreb,Croatia -2862,Drew Gooden,208,113,University of Kansas,1981,Oakland,California -2863,Marcus Haislip,208,104,University of Tennessee,1980,Lewisburg,Tennessee -2864,Adam Harrington,196,90,Auburn University,1980,Bernardston,Massachusetts -2865,Junior Harrington,193,81,Wingate University,1980,Wagram,North Carolina -2866,Juaquin Hawkins,201,99,California State University - Long Beach,1973,Gardena,California -2867,Nene Hilario,211,113,,1982,Sao Carlos,Brazil -2868,Nate Huffman,216,111,Central Michigan University,1975,Battle Creek,Michigan -2869,Ryan Humphrey,203,106,University of Notre Dame,1979,Tulsa,Oklahoma -2870,Casey Jacobsen,198,97,Stanford University,1981,Glendora,California -2871,Marko Jaric,201,89,,1978,Belgrade,Serbia -2872,Chris Jefferies,203,102,California State University - Fresno,1980,Fresno,California -2873,Jared Jeffries,211,104,Indiana University,1981,Bloomington,Indiana -2874,Fred Jones,193,95,University of Oregon,1979,Malvern,Arkansas -2875,Sean Lampley,201,102,University of California,1979,Harvey,Illinois -2876,Tito Maddox,193,86,California State University - Fresno,1981,Compton,California -2877,Roger Mason,196,90,University of Virginia,1980,Washington,District of Columbia -2878,Yao Ming*,229,140,,1980,Shanghai,China -2879,Ronald Murray,193,86,Shaw University,1979,Philadelphia,Pennsylvania -2880,Bostjan Nachbar,206,100,,1980,Slovenj Gradec,Slovenia -2881,Mehmet Okur,211,112,,1979,Yalova,Turkey -2882,Chris Owens,201,111,University of Texas at Austin,1979,Akron,Ohio -2883,Jannero Pargo,185,79,University of Arkansas,1979,Chicago,Illinois -2884,Smush Parker,193,86,Fordham University,1981,New York,New York -2885,Tayshaun Prince,206,96,University of Kentucky,1980,Compton,California -2886,Igor Rakocevic,190,83,,1978,Belgrade,Serbia -2887,Efthimi Rentzias,211,113,,1976,Trikala,Greece -2888,Antoine Rigaudeau,201,95,,1971,Cholet,France -2889,Guy Rucker,211,120,University of Iowa,1977,Inkster,Michigan -2890,Kareem Rush,198,97,University of Missouri,1980,Kansas City,Missouri -2891,John Salmons,201,95,University of Miami,1979,Philadelphia,Pennsylvania -2892,Jamal Sampson,211,106,University of California,1983,Inglewood,California -2893,Predrag Savovic,198,102,University of Hawaii,1976,Pula,Croatia -2894,Paul Shirley,208,104,Iowa State University,1977,Meriden,Kansas -2895,Tamar Slay,203,97,Marshall University,1980,Beckley,West Virginia -2896,Amar'e Stoudemire,208,111,,1982,Lake Wales,Florida -2897,Cezary Trybanski,218,108,,1979,Warsaw,Poland -2898,Nikoloz Tskitishvili,213,102,,1983,Tbilisi,Georgia -2899,Dajuan Wagner,183,77,University of Texas at Austin,1922,, -2900,Jiri Welsch,201,94,,1980,Pardubice,Czech Republic -2901,Chris Wilcox,208,100,University of Maryland,1982,Raleigh,North Carolina -2902,Mike Wilks,178,83,Rice University,1979,Milwaukee,Wisconsin -2903,Frank Williams,193,86,Portland State University,1956,Los Angeles,California -2904,Jay Williams,206,108,St. John's University,1968,Ritter,South Carolina -2905,Qyntel Woods,203,100,Northeast Mississippi Community College,1981,Memphis,Tennessee -2906,Vincent Yarbrough,201,95,University of Tennessee,1981,Cleveland,Tennessee -2907,Carmelo Anthony,203,108,Syracuse University,1984,New York,New York -2908,Marcus Banks,188,90,University of Nevada - Las Vegas,1981,Las Vegas,Nevada -2909,Leandro Barbosa,190,87,,1982,San Paulo,Brazil -2910,Matt Barnes,203,95,Providence College,1952,Providence,Rhode Island -2911,Jerome Beasley,208,107,University of North Dakota,1980,Compton,California -2912,Troy Bell,185,81,Boston College,1980,Minneapolis,Minnesota -2913,Steve Blake,190,78,University of Maryland,1980,Hollywood,Florida -2914,Keith Bogans,196,97,University of Kentucky,1980,Alexandria,Virginia -2915,Curtis Borchardt,213,108,Stanford University,1980,Buffalo,New York -2916,Chris Bosh,211,106,Georgia Institute of Technology,1984,Dallas,Texas -2917,Torraye Braggs,203,111,Xavier University,1976,Fresno,California -2918,Zarko Cabarkapa,211,106,,1981,Zrenjanin,Serbia -2919,Matt Carroll,198,96,University of Notre Dame,1980,Pittsburgh,Pennsylvania -2920,Maurice Carter,196,95,Louisiana State University,1976,Jackson,Mississippi -2921,Brian Cook,206,106,University of Illinois at Urbana-Champaign,1980,Lincoln,Illinois -2922,Omar Cook,185,86,St. John's University,1982,Brooklyn,New York -2923,Marquis Daniels,198,90,Auburn University,1981,Jasper,Florida -2924,Josh Davis,188,77,University of Dayton,1955,Detroit,Michigan -2925,Boris Diaw,203,113,,1982,Cormeille-en-Parisis,France -2926,Kaniel Dickens,203,97,University of Idaho,1978,Denver,Colorado -2927,Ronald Dupree,201,94,Louisiana State University,1981,Biloxi,Mississippi -2928,Ndudi Ebi,206,90,,1984,London,United Kingdom -2929,Francisco Elson,213,106,University of California,1976,Rotterdam,Netherlands -2930,Desmond Ferguson,201,92,University of Detroit Mercy,1977,Lansing,Michigan -2931,T.J. Ford,201,92,,1977,, -2932,Richie Frahm,196,95,Gonzaga University,1977,Battle Ground,Washington -2933,Hiram Fuller,206,108,California State University - Fresno,1981,East St. Louis,Missouri -2934,Reece Gaines,198,92,University of Louisville,1981,Madison,Wisconsin -2935,Alex Garcia,190,99,,1980,Orlandia,Brazil -2936,Willie Green,193,90,University of Detroit Mercy,1981,Detroit,Michigan -2937,Ben Handlogten,208,108,Western Michigan University,1973,Grand Rapids,Michigan -2938,Travis Hansen,198,92,Brigham Young University,1978,Provo,Utah -2939,Udonis Haslem,203,106,University of Florida,1980,Miami,Florida -2940,Jarvis Hayes,201,99,University of Georgia,1981,Atlanta,Georgia -2941,Kirk Hinrich,193,86,University of Kansas,1981,Sioux City,Iowa -2942,Josh Howard,201,95,Wake Forest University,1980,Winston-Salem,North Carolina -2943,Brandon Hunter,201,117,Ohio University,1980,Cincinnati,Ohio -2944,LeBron James,203,113,,1984,Akron,Ohio -2945,Britton Johnsen,208,95,University of Utah,1979,Salt Lake City,Utah -2946,Linton Johnson,203,92,Tulane University,1980,Chicago,Illinois -2947,Dahntay Jones,190,83,University of Houston,1976,Galveston,Texas -2948,James Jones,190,81,Assumption College,1949,, -2949,Chris Kaman,213,120,Central Michigan University,1982,Wyoming,Michigan -2950,Jason Kapono,203,96,University of California - Los Angeles,1981,Long Beach,California -2951,Kyle Korver,201,96,Creighton University,1981,Lakewood,California -2952,Maciej Lampe,211,124,,1985,Lodz,Poland -2953,Raul Lopez,185,77,,1980,Vic,Spain -2954,Keith McLeod,188,85,Bowling Green State University,1979,Canton,Ohio -2955,Darko Milicic,213,113,,1985,Novi Sad,Serbia -2956,Travis Outlaw,206,95,,1984,Starkville,Mississippi -2957,Zaza Pachulia,211,122,,1984,Tbilisi,Georgia -2958,Sasha Pavlovic,211,122,,1984,, -2959,Desmond Penigar,201,111,Utah State University,1981,Upland,California -2960,Kirk Penney,196,99,University of Wisconsin,1980,Auckland,New Zealand -2961,Kendrick Perkins,208,122,,1984,Nederland,Texas -2962,Mickael Pietrus,198,97,,1982,Les Abymes,Guadeloupe -2963,Zoran Planinic,201,88,,1982,Mostar,Bosnia and Herzegovina -2964,Luke Ridnour,188,79,University of Oregon,1981,Coeur d'Alene,Idaho -2965,Theron Smith,203,102,Ball State University,1980,Bartow,Florida -2966,Darius Songaila,206,112,Wake Forest University,1978,Marijampole,Lithuania -2967,Mike Sweetney,203,124,Georgetown University,1982,Oxon Hill,Maryland -2968,Ime Udoka,198,97,Portland State University,1977,Portland,Oregon -2969,Slavko Vranes,226,124,,1983,Belgrade,Serbia -2970,Dwyane Wade,193,99,Marquette University,1982,Chicago,Illinois -2971,Luke Walton,203,106,University of Arizona,1980,San Diego,California -2972,David West,206,113,Xavier University,1980,Teaneck,New Jersey -2973,Mo Williams,203,102,University of Notre Dame,1971,Fredericksburg,Virginia -2974,Tony Allen,193,96,Oklahoma State University,1982,Chicago,Illinois -2975,Rafael Araujo,211,127,Brigham Young University,1980,Curitiba,Brazil -2976,Trevor Ariza,203,97,University of California - Los Angeles,1985,Miami,Florida -2977,Maurice Baker,185,79,Oklahoma State University,1979,Granite City,Illinois -2978,Andre Barrett,178,78,Seton Hall University,1982,Bronx,New York -2979,Andris Biedrins,211,108,,1986,Riga,Latvia -2980,Tony Bobbitt,193,86,University of Cincinnati,1979,Daytona,Florida -2981,Matt Bonner,208,106,University of Florida,1980,Concord,New Hampshire -2982,Antonio Burks,185,90,University of Memphis,1980,Memphis,Tennessee -2983,Jackie Butler,208,113,,1985,McComb,Mississippi -2984,Geno Carlisle,190,81,University of California,1976,Grand Rapids,Michigan -2985,Lionel Chalmers,183,81,Xavier University,1980,Albany,New York -2986,Josh Childress,203,95,Stanford University,1983,Harbor City,California -2987,Nick Collison,208,115,University of Kansas,1980,Orange City,Iowa -2988,Erik Daniels,203,97,University of Kentucky,1982,Cincinnati,Ohio -2989,Carlos Delfino,198,104,,1982,Santa Fe,Argentina -2990,Luol Deng,206,99,Duke University,1985,Wow,South Sudan -2991,Chris Duhon,185,83,Duke University,1982,Mamou,Louisiana -2992,Corsley Edwards,206,124,Central Connecticut State University,1979,Baltimore,Maryland -2993,John Edwards,213,124,Kent State University,1981,Warren,Ohio -2994,Andre Emmett,196,104,Texas Tech University,1982,Dallas,Texas -2995,Luis Flores,188,90,Manhattan College,1981,San Pedro de Macoris,Dominican Republic -2996,Matt Freije,208,108,Vanderbilt University,1981,Overland Park,Kansas -2997,Ben Gordon,190,90,University of Connecticut,1983,London,United Kingdom -2998,Devin Harris,190,87,University of Wisconsin,1983,Milwaukee,Wisconsin -2999,David Harrison,213,127,University of Colorado,1982,Nashville,Tennessee -3000,Dwight Howard,211,120,,1985,Atlanta,Georgia -3001,Kris Humphries,206,106,University of Minnesota,1985,Minneapolis,Minnesota -3002,Andre Iguodala,198,97,University of Arizona,1984,Springfield,Illinois -3003,Didier Ilunga-Mbenga,198,97,,1984,, -3004,Royal Ivey,190,90,University of Texas at Austin,1981,Harlem,New York -3005,Al Jefferson,208,131,,1985,Monticello,Mississippi -3006,Horace Jenkins,185,81,William Paterson University,1974,Elizabeth,New Jersey -3007,Mario Kasun,216,117,,1980,Split,Croatia -3008,Viktor Khryapa,206,95,,1982,Kiev,Ukraine -3009,Brandin Knight,178,78,Stanford University,1975,Livingston,New Jersey -3010,Nenad Krstic,213,108,,1983,Kraljevo,Serbia -3011,Ibo Kutluay,198,90,,1974,Istanbul,Turkey -3012,Shaun Livingston,201,87,,1985,Peoria,Illinois -3013,Kevin Martin,206,106,University of Cincinnati,1977,Saginaw,Michigan -3014,Jameer Nelson,183,86,Saint Joseph's University,1982,Chester,Pennsylvania -3015,Andres Nocioni,201,102,,1979,Santa Fe,Argentina -3016,Emeka Okafor,208,114,University of Connecticut,1982,Houston,Texas -3017,Pavel Podkolzin,226,117,,1985,Novosibirsk,Russia -3018,Peter John,226,117,,1985,, -3019,Justin Reed,203,108,University of Mississippi,1982,Jackson,Mississippi -3020,Jared Reiner,211,115,University of Iowa,1982,Tripp,South Dakota -3021,Bernard Robinson,198,95,University of Michigan,1980,Washington,District of Columbia -3022,Quinton Ross,198,88,Southern Methodist University,1981,Dallas,Texas -3023,Ha Seung-Jin,221,138,,1985,Seoul,Republic of Korea -3024,Donta Smith,188,86,University of Minnesota,1920,Minnesota, -3025,J.R. Smith,188,86,,1920,, -3026,Josh Smith,213,106,University of Southern Colorado,1944,Columbus,Mississippi -3027,Kirk Snyder,198,102,University of Nevada - Reno,1983,Los Angeles,California -3028,Pape Sow,208,113,California State University - Fullerton,1981,Dakar,Senegal -3029,Awvee Storey,198,100,Arizona State University,1977,Chicago,Illinois -3030,Robert Swift,213,111,,1985,Bakersfield,California -3031,Yuta Tabuse,175,74,Brigham Young University Hawaii,1980,Yokohama,Japan -3032,Sebastian Telfair,183,74,,1985,Brooklyn,New York -3033,Billy Thomas,193,94,University of Kansas,1975,Shreveport,Louisiana -3034,James Thomas,198,97,Providence College,1973,Brooklyn,New York -3035,Beno Udrih,190,92,,1982,Celje,Slovenia -3036,Anderson Varejao,208,123,,1982,Santa Teresa,Brazil -3037,Jackson Vroman,208,99,Iowa State University,1981,Laguna,California -3038,Sasha Vujacic,201,88,,1984,Maribor,Slovenia -3039,Delonte West,193,81,Saint Joseph's University,1983,Washington,District of Columbia -3040,Damien Wilkins,208,99,Idaho State University,1960,Pocatello,Idaho -3041,Dorell Wright,206,92,,1985,Los Angeles,California -3042,Alex Acker,196,83,Pepperdine University,1983,Compton,California -3043,Alan Anderson,198,99,Michigan State University,1982,Minneapolis,Minnesota -3044,Martynas Andriuskevicius,218,108,,1986,Kaunas,Lithuania -3045,Earl Barron,213,113,University of Memphis,1981,Clarksdale,Mississippi -3046,Eddie Basden,196,97,University of North Carolina at Charlotte,1983,New York,New York -3047,Brandon Bass,203,113,Louisiana State University,1985,Baton Rouge,Louisiana -3048,Esteban Batista,208,122,,1983,Montevideo,Uruguay -3049,Andray Blatche,211,106,,1986,Syracuse,New York -3050,Andrew Bogut,213,117,University of Utah,1984,Melbourne,Australia -3051,Kevin Burleson,190,92,University of Minnesota,1979,Seattle,Washington -3052,Andrew Bynum,213,129,,1987,Plainsboro,New Jersey -3053,Will Bynum,183,83,Georgia Institute of Technology,1983,Chicago,Illinois -3054,Jose Calderon,190,90,,1981,Villanueva de la Serena,Spain -3055,Travis Diener,185,79,Marquette University,1982,Fond du Lac,Wisconsin -3056,Ike Diogu,203,113,Arizona State University,1983,Buffalo,New York -3057,Monta Ellis,190,83,,1985,Jackson,Mississippi -3058,Daniel Ewing,190,83,Duke University,1983,Milton,Florida -3059,Noel Felix,206,102,California State University - Fresno,1981,Los Angeles,California -3060,Raymond Felton,185,92,University of North Carolina,1984,Marion,South Carolina -3061,Gerald Fitch,190,85,University of Kentucky,1982,Columbus,Georgia -3062,Sharrod Ford,201,95,University of Illinois at Chicago,1972,Baton Rouge,Louisiana -3063,Channing Frye,211,115,University of Arizona,1983,White Plains,New York -3064,Deng Gai,206,113,Fairfield University,1982,Wow,South Sudan -3065,Francisco Garcia,201,88,University of Louisville,1981,Santo Domingo,Dominican Republic -3066,Ryan Gomes,201,113,Providence College,1982,Waterbury,Connecticut -3067,Joey Graham,201,102,Oklahoma State University,1982,Wilmington,Delaware -3068,Stephen Graham,198,97,Oklahoma State University,1982,Wilmington,Delaware -3069,Danny Granger,206,100,University of New Mexico,1983,New Orleans,Louisiana -3070,Devin Green,201,95,Hampton University,1982,Columbus,Ohio -3071,Gerald Green,201,92,,1986,Houston,Texas -3072,Orien Greene,193,94,University of Louisiana at Lafayette,1982,Gainesville,Florida -3073,Anthony Grundy,190,81,North Carolina State University,1979,Louisville,Kentucky -3074,Chuck Hayes,198,108,University of Kentucky,1983,San Leandro,California -3075,Luther Head,190,83,University of Illinois at Urbana-Champaign,1982,Chicago,Illinois -3076,Julius Hodge,201,95,North Carolina State University,1983,New York,New York -3077,Randy Holcomb,206,102,San Diego State University,1979,Chicago,Illinois -3078,Jarrett Jack,190,90,Georgia Institute of Technology,1983,Fort Washington,Maryland -3079,Sarunas Jasikevicius,193,88,University of Maryland,1976,Kaunas,Lithuania -3080,Amir Johnson,206,108,,1987,Los Angeles,California -3081,Dwayne Jones,208,95,University of Houston,1952,Houston,Texas -3082,Linas Kleiza,203,111,University of Missouri,1985,Kaunas,Lithuania -3083,Yaroslav Korolev,206,92,,1987,Moscow,Russia -3084,David Lee,201,102,University of San Francisco,1942,Modesto,California -3085,Arvydas Macijauskas,193,97,,1980,Klaipeda,Lithuania -3086,Rawle Marshall,206,86,Oakland University,1982,Georgetown,Guyana -3087,Jason Maxiell,201,117,University of Cincinnati,1983,Chicago,Illinois -3088,Sean May,206,120,University of North Carolina,1984,Chicago,Illinois -3089,Rashad McCants,193,93,University of North Carolina,1984,Asheville,North Carolina -3090,Aaron Miles,185,79,University of Kansas,1983,Portland,Oregon -3091,C.J. Miles,185,79,,1983,, -3092,Sergei Monia,203,99,,1983,Saratov,Russia -3093,Boniface N'Dong,213,89,,1977,Dakar,Senegal -3094,Fabricio Oberto,208,111,,1975,Las Varillas,Argentina -3095,Andre Owens,193,90,University of Houston,1980,Indianapolis,Indiana -3096,Chris Paul,183,79,Wake Forest University,1985,Winston-Salem,North Carolina -3097,Johan Petro,213,112,,1986,Paris,France -3098,Josh Powell,206,102,North Carolina State University,1983,Charleston,South Carolina -3099,Ronnie Price,188,86,Utah Valley State College,1983,Friendswood,Texas -3100,Shavlik Randolph,208,108,Duke University,1983,Raleigh,North Carolina -3101,Anthony Roberson,196,83,Oral Roberts University,1955,Chattanooga,Tennessee -3102,Lawrence Roberts,206,108,Mississippi State University,1982,Houston,Texas -3103,Nate Robinson,175,81,University of Washington,1984,Seattle,Washington -3104,Melvin Sanders,196,95,Oklahoma State University,1981,Liberal,Kansas -3105,Alex Scales,193,83,University of Oregon,1978,Racine,Wisconsin -3106,Luke Schenscher,216,115,Georgia Institute of Technology,1982,Hope Forest,Australia -3107,Wayne Simien,206,115,University of Kansas,1983,Leavenworth,Kansas -3108,James Singleton,203,97,Murray State University,1981,Chicago,Illinois -3109,Salim Stoudamire,185,81,University of Arizona,1982,Portland,Oregon -3110,Chris Taft,208,117,University of Pittsburgh,1985,Brooklyn,New York -3111,Donell Taylor,198,81,University of Alabama at Birmingham,1982,Washington,District of Columbia -3112,Dijon Thompson,201,88,University of California - Los Angeles,1983,Los Angeles,California -3113,Ronny Turiaf,208,112,Gonzaga University,1983,Le Robert,Martinique -3114,Charlie Villanueva,211,105,University of Connecticut,1984,Queens,New York -3115,Von Wafer,196,95,Florida State University,1985,Homer,Louisiana -3116,Matt Walsh,198,92,University of Florida,1982,Holland,Pennsylvania -3117,Hakim Warrick,206,99,Syracuse University,1982,Philadelphia,Pennsylvania -3118,Martell Webster,216,102,Morgan State University,1952,Baltimore,Maryland -3119,Robert Whaley,208,117,Walsh University,1982,Benton Harbor,Michigan -3120,Deron Williams,190,90,University of Illinois at Urbana-Champaign,1984,Parkersburg,West Virginia -3121,Lou Williams,206,90,Stetson University,1969,Ocala,Florida -3122,Marvin Williams,185,89,University of Alabama,1982,Jackson,Mississippi -3123,Antoine Wright,201,95,Texas A&M University,1984,West Covina,California -3124,Bracey Wright,211,102,University of California - Los Angeles,1962,Hollywood,California -3125,Derrick Zimmerman,190,88,Mississippi State University,1981,Monroe,Louisiana -3126,Hassan Adams,193,99,University of Arizona,1984,Inglewood,California -3127,Maurice Ager,196,91,Michigan State University,1984,Detroit,Michigan -3128,LaMarcus Aldridge,211,117,University of Texas at Austin,1985,Dallas,Texas -3129,Lou Amundson,206,99,University of Nevada - Las Vegas,1982,Ventura,California -3130,Hilton Armstrong,211,106,University of Connecticut,1984,Peekskill,New York -3131,James Augustine,208,106,University of Illinois at Urbana-Champaign,1984,Midlothian,Illinois -3132,Kelenna Azubuike,196,99,University of Kentucky,1983,London,United Kingdom -3133,Renaldo Balkman,203,94,University of South Carolina,1984,Staten Island,New York -3134,J.J. Barea,203,94,,1984,, -3135,Andrea Bargnani,213,111,,1985,Rome,Italy -3136,Will Blalock,183,92,Iowa State University,1983,Boston,Massachusetts -3137,Josh Boone,208,107,University of Connecticut,1984,Mount Airy,Maryland -3138,Cedric Bozeman,198,93,University of California - Los Angeles,1983,Los Angeles,California -3139,Ronnie Brewer,193,81,University of Arkansas,1955,Fort Smith,Arkansas -3140,Andre Brown,206,111,DePaul University,1981,Chicago,Illinois -3141,Shannon Brown,193,92,Michigan State University,1985,Maywood,Illinois -3142,Rodney Carney,201,92,University of Memphis,1984,Memphis,Tennessee -3143,Mardy Collins,198,99,Temple University,1984,Philadelphia,Pennsylvania -3144,Will Conroy,188,88,University of Washington,1982,Portland,Oregon -3145,Paul Davis,211,122,Michigan State University,1984,Detroit,Michigan -3146,Yakhouba Diawara,201,102,Pepperdine University,1982,Paris,France -3147,Quincy Douby,190,79,Rutgers University,1984,Brooklyn,New York -3148,Jordan Farmar,188,81,University of California - Los Angeles,1986,Los Angeles,California -3149,Desmon Farmer,196,99,University of Southern California,1981,Flint,Michigan -3150,Randy Foye,193,96,Villanova University,1983,Newark,New Jersey -3151,Jorge Garbajosa,206,111,,1977,Madrid,Spain -3152,Rudy Gay,203,104,University of Connecticut,1986,Brooklyn,New York -3153,Mickael Gelabale,201,97,,1983,Pointe Noire,Guadeloupe -3154,Daniel Gibson,188,86,University of Texas at Austin,1986,Houston,Texas -3155,Andreas Glyniadakis,216,127,,1981,Hania,Greece -3156,Lynn Greer,188,79,Temple University,1979,Philadelphia,Pennsylvania -3157,Mike Hall,203,104,George Washington University,1984,Chicago,Illinois -3158,Walter Herrmann,206,102,,1979,Venado Tuerto,Argentina -3159,Robert Hite,188,83,University of Miami,1984,Cincinnati,Ohio -3160,Ryan Hollins,213,108,University of California - Los Angeles,1984,Pasadena,California -3161,Mile Ilic,216,104,,1984,Tuzla,Bosnia and Herzegovina -3162,Ersan Ilyasova,208,106,,1987,Eskisehir,Turkey -3163,Alexander Johnson,206,108,Florida State University,1983,Albany,Georgia -3164,Solomon Jones,208,104,University of South Florida,1984,Eustis,Florida -3165,Tarence Kinsey,198,83,University of South Carolina,1984,Tampa,Florida -3166,James Lang,208,129,,1983,Mobile,Alabama -3167,Kyle Lowry,183,92,Villanova University,1986,Philadelphia,Pennsylvania -3168,Renaldo Major,201,90,California State University - Fresno,1982,Chicago,Illinois -3169,Damir Markota,208,102,,1985,Sarajevo,Bosnia and Herzegovina -3170,Chris McCray,196,87,University of Maryland,1984,Capitol Heights,Maryland -3171,Ivan McFarlin,203,108,Oklahoma State University,1982,Missouri City,Texas -3172,Pops Mensah-Bonsu,206,108,George Washington University,1983,London,United Kingdom -3173,Paul Millsap,203,111,Louisiana Tech University,1985,Monroe,Louisiana -3174,Randolph Morris,208,120,University of Kentucky,1986,Houston,Texas -3175,Adam Morrison,203,92,Gonzaga University,1984,Glendive,Montana -3176,David Noel,198,104,University of North Carolina,1984,Durham,North Carolina -3177,Steve Novak,208,102,Marquette University,1983,Libertyville,Illinois -3178,Patrick O'Bryant,213,117,Bradley University,1986,Oskaloosa,Iowa -3179,Kevinn Pinkney,208,111,University of Nevada - Reno,1983,Colton,California -3180,Leon Powe,203,108,University of California,1984,Berkeley,California -3181,Roger Powell,198,106,University of Illinois at Urbana-Champaign,1983,Joliet,Illinois -3182,Chris Quinn,188,83,University of Notre Dame,1983,New Orleans,Louisiana -3183,Allan Ray,188,86,Villanova University,1984,Bronx,New York -3184,J.J. Redick,188,86,,1984,, -3185,Jeremy Richardson,198,83,Delta State University,1984,Allentown,Pennsylvania -3186,Sergio Rodriguez,190,79,,1986,Tenerife,Spain -3187,Rajon Rondo,185,84,University of Kentucky,1986,Louisville,Kentucky -3188,Brandon Roy,198,97,University of Washington,1984,Seattle,Washington -3189,Thabo Sefolosha,201,99,,1984,Vevey,Switzerland -3190,Mouhamed Sene,201,99,,1984,, -3191,Cedric Simmons,206,106,North Carolina State University,1986,Shallotte,North Carolina -3192,Uros Slokar,208,107,,1983,Ljubljana,Slovenia -3193,Craig Smith,201,113,Boston College,1983,Inglewood,California -3194,Steven Smith,201,90,Michigan State University,1969,Highland Park,Michigan -3195,Vassilis Spanoulis,193,88,,1982,Larissa,Greece -3196,Tyrus Thomas,206,97,Louisiana State University,1986,Baton Rouge,Louisiana -3197,P.J. Tucker,206,97,,1986,, -3198,Marcus Vinicius,206,97,,1986,, -3199,James White,206,131,Georgetown University,1976,St. Louis,Missouri -3200,Justin Williams,208,102,University of Wyoming,1984,Chicago,Illinois -3201,Marcus Williams,185,89,University of Alabama,1982,Jackson,Mississippi -3202,Shawne Williams,185,91,University of North Carolina,1975,Bronx,New York -3203,Shelden Williams,185,91,University of North Carolina,1975,Bronx,New York -3204,Arron Afflalo,196,95,University of California - Los Angeles,1985,Los Angeles,California -3205,Blake Ahearn,188,86,Missouri State University,1984,St. Louis,Missouri -3206,Lance Allred,211,113,Weber State University,1981,Salt Lake City,Utah -3207,Morris Almond,198,102,Rice University,1985,Dalton,Georgia -3208,Joel Anthony,206,111,University of Nevada - Las Vegas,1982,Montreal,Canada -3209,Marco Belinelli,196,95,,1986,Bologna,Italy -3210,Corey Brewer,206,84,University of Florida,1986,Portland,Tennessee -3211,Aaron Brooks,183,73,University of Oregon,1985,Seattle,Washington -3212,Wilson Chandler,203,102,DePaul University,1987,Benton Harbor,Michigan -3213,Mike Conley,185,79,Ohio State University,1987,Fayetteville,Arkansas -3214,Daequan Cook,190,83,University of Portland,1958,Los Angeles,California -3215,Javaris Crittenton,196,90,Georgia Institute of Technology,1987,Atlanta,Georgia -3216,Jermareo Davidson,208,104,University of Alabama,1984,Atlanta,Georgia -3217,Glen Davis,206,131,Louisiana State University,1986,Baton Rouge,Louisiana -3218,Guillermo Diaz,188,87,University of Miami,1985,San Juan,Puerto Rico -3219,Jared Dudley,201,102,Boston College,1985,San Diego,California -3220,Kevin Durant,206,108,University of Texas at Austin,1988,Washington,District of Columbia -3221,Nick Fazekas,211,106,University of Nevada - Reno,1985,Denver,Colorado -3222,Kyrylo Fesenko,216,130,,1986,Dnepropetrovsk,Ukraine -3223,Thomas Gardner,196,102,University of Missouri,1985,Portland,Oregon -3224,Marcin Gortat,211,108,,1984,Lodz,Poland -3225,Aaron Gray,213,122,University of Pittsburgh,1984,Tarzana,California -3226,Jeff Green,196,88,University of Maryland,1941,, -3227,Taurean Green,183,80,University of Florida,1986,Fort Lauderdale,Florida -3228,Mike Harris,198,108,Rice University,1983,Hillsboro,Texas -3229,Spencer Hawes,216,111,University of Washington,1988,Seattle,Washington -3230,Al Horford,208,111,University of Florida,1986,Puerto Plata,Dominican Republic -3231,Yi Jianlian,213,108,,1987,He Shan,China -3232,Coby Karl,196,97,Boise State University,1983,Great Falls,Montana -3233,Carl Landry,206,112,Purdue University,1983,Milwaukee,Wisconsin -3234,Keith Langford,193,97,University of Kansas,1983,Fort Worth,Texas -3235,Stephane Lasme,203,97,University of Massachusetts Amherst,1982,Port-Gentil,Gabon -3236,Acie Law,190,88,Texas A&M University,1985,Dallas,Texas -3237,Ian Mahinmi,211,113,,1986,Rouen,France -3238,Dominic McGuire,206,99,California State University - Fresno,1985,San Diego,California -3239,Josh McRoberts,208,108,Duke University,1987,Indianapolis,Indiana -3240,Jamario Moon,203,92,Meridian Community College,1980,Goodwater,Alabama -3241,Juan Carlos,203,92,,1980,, -3242,Demetris Nichols,203,97,Syracuse University,1984,Boston,Massachusetts -3243,Joakim Noah,211,104,University of Florida,1985,New York,New York -3244,Oleksiy Pecherov,213,105,,1985,Donetsk,Ukraine -3245,Kosta Perovic,218,108,,1985,Osijek,Croatia -3246,Kasib Powell,201,97,Texas Tech University,1981,Teaneck,New Jersey -3247,Gabe Pruitt,193,77,University of Southern California,1986,Los Angeles,California -3248,Chris Richard,206,122,University of Florida,1984,Lakeland,Florida -3249,Cheikh Samb,216,111,,1984,Senegal, -3250,Luis Scola,206,108,,1980,Buenos Aires,Argentina -3251,Ramon Sessions,190,86,University of Nevada - Reno,1986,Myrtle Beach,South Carolina -3252,Courtney Sims,208,111,University of Michigan,1983,Roslindale,Massachusetts -3253,Jason Smith,211,113,Louisiana State University,1977,Atlanta,Georgia -3254,D.J. Strawberry,211,113,,1977,, -3255,Rodney Stuckey,196,95,Eastern Washington University,1986,Seattle,Washington -3256,Al Thornton,203,99,Florida State University,1983,Perry,Georgia -3257,Alando Tucker,203,86,Oklahoma Baptist University,1943,Dayton,Ohio -3258,Darius Washington,188,88,University of Memphis,1985,Winter Park,Florida -3259,Darryl Watkins,211,117,Syracuse University,1984,Paterson,New Jersey -3260,C.J. Watson,211,117,,1984,, -3261,Mario West,208,104,Old Dominion University,1960,Petersburg,Virginia -3262,Sean Williams,208,106,Boston College,1986,Houston,Texas -3263,Brandan Wright,211,102,University of California - Los Angeles,1962,Hollywood,California -3264,Julian Wright,203,102,University of Kansas,1987,Chicago,Illinois -3265,Nick Young,201,95,University of Southern California,1985,Los Angeles,California -3266,Thaddeus Young,203,100,Georgia Institute of Technology,1988,New Orleans,Louisiana -3267,Alexis Ajinca,218,112,,1988,Saint-Etienne,France -3268,Joe Alexander,203,104,West Virginia University,1986,Kaohsiung,Taiwan -3269,Ryan Anderson,208,108,University of California,1988,Sacramento,California -3270,Darrell Arthur,206,106,University of Kansas,1988,Dallas,Texas -3271,D.J. Augustin,206,106,,1988,, -3272,Nicolas Batum,203,90,,1988,Lisieux,France -3273,Jerryd Bayless,190,90,University of Arizona,1988,Phoenix,Arizona -3274,Michael Beasley,206,106,Kansas State University,1989,Frederick,Maryland -3275,Bobby Brown,193,92,Miami University,1923,Versailles,Ohio -3276,Mario Chalmers,188,86,University of Kansas,1986,Anchorage,Alaska -3277,Joe Crawford,196,95,University of Kentucky,1986,Detroit,Michigan -3278,Joey Dorsey,203,121,University of Memphis,1983,Baltimore,Maryland -3279,Chris Douglas-Roberts,201,90,University of Memphis,1987,Detroit,Michigan -3280,Goran Dragic,190,86,,1986,Ljubljana,Slovenia -3281,Rudy Fernandez,198,83,,1985,Palma de Mallorca,Spain -3282,Danilo Gallinari,208,102,,1988,Sant'Angelo Lodigiano,Italy -3283,Marc Gasol,216,115,,1985,Barcelona,Spain -3284,J.R. Giddens,216,115,,1985,, -3285,Eric Gordon,193,97,Indiana University,1988,Indianapolis,Indiana -3286,Donte Greene,211,102,Syracuse University,1988,Munich,Germany -3287,Hamed Haddadi,218,115,,1985,Ahvaz,Islamic Republic of Iran -3288,Malik Hairston,198,99,University of Oregon,1987,Detroit,Michigan -3289,Roy Hibbert,218,122,Georgetown University,1986,Queens,New York -3290,J.J. Hickson,218,122,,1986,, -3291,George Hill,190,85,Indiana University-Purdue University Indianapolis,1986,Indianapolis,Indiana -3292,Steven Hill,213,112,University of Arkansas,1985,Chanute,Kansas -3293,Othello Hunter,203,102,Ohio State University,1986,Winston-Salem,North Carolina -3294,Darnell Jackson,206,114,University of Kansas,1985,Oklahoma City,Oklahoma -3295,Nathan Jawai,208,127,Midland College,1986,Sydney,Australia -3296,Dontell Jefferson,196,88,University of Arkansas,1983,Lithonia,Georgia -3297,Trey Johnson,196,98,Jackson State University,1984,Jackson,Mississippi -3298,DeAndre Jordan,211,120,Texas A&M University,1988,Houston,Texas -3299,Kosta Koufos,213,120,Ohio State University,1989,Canton,Ohio -3300,Rob Kurz,206,105,University of Notre Dame,1985,Philadelphia,Pennsylvania -3301,Courtney Lee,196,90,Western Kentucky University,1985,Indianapolis,Indiana -3302,Brook Lopez,213,124,Stanford University,1988,North Hollywood,California -3303,Robin Lopez,213,115,Stanford University,1988,North Hollywood,California -3304,Kevin Love,208,113,University of California - Los Angeles,1988,Santa Monica,California -3305,Cartier Martin,201,99,Kansas State University,1984,Crockett,Texas -3306,O.J. Mayo,201,99,,1984,, -3307,Luc Mbah,201,99,,1984,, -3308,JaVale McGee,213,122,University of Nevada - Reno,1988,Flint,Michigan -3309,Anthony Morrow,196,95,Georgia Institute of Technology,1985,Charlotte,North Carolina -3310,DeMarcus Nelson,193,90,Duke University,1985,Oakland,California -3311,Greg Oden,213,113,Ohio State University,1988,Buffalo,New York -3312,Anthony Randolph,208,92,Louisiana State University,1989,Worzbach,Germany -3313,Derrick Rose,190,86,University of Memphis,1988,Chicago,Illinois -3314,Brandon Rush,198,99,University of Kansas,1985,Kansas City,Missouri -3315,Walter Sharpe,206,111,University of Alabama at Birmingham,1986,Huntsville,Alabama -3316,Sean Singletary,183,83,University of Virginia,1985,Philadelphia,Pennsylvania -3317,Marreese Speights,208,115,University of Florida,1987,St. Petersburg,Florida -3318,Mike Taylor,188,74,Iowa State University,1986,Chicago,Illinois -3319,Jason Thompson,185,83,University of South Carolina,1946,New York,New York -3320,Anthony Tolliver,203,108,Creighton University,1985,Springfield,Missouri -3321,Roko Ukic,196,83,,1984,Split,Croatia -3322,Henry Walker,196,83,,1984,, -3323,Kyle Weaver,198,91,Washington State University,1986,Janesville,Wisconsin -3324,Sonny Weems,198,92,University of Arkansas,1986,West Memphis,Arkansas -3325,Russell Westbrook,190,90,University of California - Los Angeles,1988,Long Beach,California -3326,D.J. White,190,90,,1988,, -3327,Jawad Williams,206,108,St. John's University,1968,Ritter,South Carolina -3328,Sun Yue,206,92,,1985,Hebei,China -3329,David Andersen,208,104,Augsburg College,1943,Minneapolis,Minnesota -3330,Antonio Anderson,188,83,Canisius College,1945,Buffalo,New York -3331,Jeff Ayres,188,83,,1945,, -3332,Rodrigue Beaubois,183,77,,1988,Pointe-a-Pitre,Guadeloupe -3333,DeJuan Blair,201,122,University of Pittsburgh,1989,Pittsburgh,Pennsylvania -3334,Jon Brockman,201,115,University of Washington,1987,Snohomish,Washington -3335,Derrick Brown,185,72,Jacksonville University,1968,Jacksonville,Florida -3336,Chase Budinger,201,94,University of Arizona,1988,Encinitas,California -3337,DeMarre Carroll,203,97,University of Missouri,1986,Birmingham,Alabama -3338,Omri Casspi,206,102,,1988,Holon,Israel -3339,Earl Clark,208,102,University of Louisville,1988,Plainfield,New Jersey -3340,Darren Collison,183,79,University of California - Los Angeles,1987,Rancho Cucamonga,California -3341,Dante Cunningham,203,104,Villanova University,1987,Clinton,Maryland -3342,JamesOn Curry,190,86,Oklahoma State University,1986,Pleasant Grove,North Carolina -3343,Stephen Curry,190,86,Davidson College,1988,Akron,Ohio -3344,Austin Daye,211,99,Gonzaga University,1988,Irvine,California -3345,DeMar DeRozan,201,100,University of Southern California,1989,Compton,California -3346,Toney Douglas,188,88,Florida State University,1986,Jonesboro,Georgia -3347,Wayne Ellington,193,90,University of North Carolina,1987,Wynnewood,Pennsylvania -3348,Tyreke Evans,198,99,University of Memphis,1989,Chester,Pennsylvania -3349,Jonny Flynn,183,83,Syracuse University,1989,Niagara Falls,New York -3350,Sundiata Gaines,185,83,University of Georgia,1986,Jamaica,New York -3351,Alonzo Gee,198,102,University of Alabama,1987,Riviera Beach,Florida -3352,Taj Gibson,206,102,University of Southern California,1985,Brooklyn,New York -3353,Trey Gilder,206,83,Northwestern State University,1985,Dallas,Texas -3354,Danny Green,206,100,University of California - Los Angeles,1957,Lynwood,California -3355,Taylor Griffin,201,107,University of Oklahoma,1986,Oklahoma City,Oklahoma -3356,Tyler Hansbrough,206,113,University of North Carolina,1985,Poplar Bluff,Missouri -3357,James Harden,196,99,Arizona State University,1989,Los Angeles,California -3358,Jordan Hill,208,106,University of Arizona,1987,Atlanta,Georgia -3359,Jrue Holiday,193,92,University of California - Los Angeles,1990,Chatsworth,California -3360,Lester Hudson,190,86,University of Tennessee at Martin,1984,Memphis,Tennessee -3361,Chris Hunter,211,108,University of Michigan,1984,Gary,Indiana -3362,Serge Ibaka,208,106,,1989,Brazzaville,Republic of the Congo -3363,Cedric Jackson,190,86,Cleveland State University,1986,Alamogordo,New Mexico -3364,Othyus Jeffers,196,90,Robert Morris University (IL),1985,Chicago,Illinois -3365,Brandon Jennings,185,77,,1989,Compton,California -3366,Jonas Jerebko,208,104,,1987,Kinna,Sweden -3367,James Johnson,206,113,Wake Forest University,1987,Cheyenne,Wyoming -3368,Oliver Lafayette,188,86,University of Houston,1984,Baton Rouge,Louisiana -3369,Marcus Landry,201,104,University of Wisconsin,1985,Milwaukee,Wisconsin -3370,Ty Lawson,180,88,University of North Carolina,1987,Clinton,Maryland -3371,Wesley Matthews,185,77,University of Wisconsin,1959,Sarasota,Florida -3372,Eric Maynor,190,79,Virginia Commonwealth University,1987,Raeford,North Carolina -3373,Jodie Meeks,193,95,University of Kentucky,1987,Norcross,Georgia -3374,Patty Mills,203,111,Louisiana Tech University,1985,Monroe,Louisiana -3375,Byron Mullens,213,124,Ohio State University,1989,Canal Winchester,Ohio -3376,A.J. Price,213,124,,1989,, -3377,DaJuan Summers,203,104,Georgetown University,1988,Baltimore,Maryland -3378,Jermaine Taylor,193,79,Texas Tech University,1960,Blytheville,Arkansas -3379,Jeff Teague,188,84,Wake Forest University,1988,Indianapolis,Indiana -3380,Garrett Temple,198,88,Louisiana State University,1986,Baton Rouge,Louisiana -3381,Hasheem Thabeet,221,119,University of Connecticut,1987,Dar es Salaam,United Republic of Tanzania -3382,Marcus Thornton,193,92,Louisiana State University,1987,Baton Rouge,Louisiana -3383,Terrence Williams,198,99,University of Louisville,1987,Seattle,Washington -3384,Sam Young,198,99,University of Pittsburgh,1985,Washington,District of Columbia -3385,Jeff Adrien,201,111,University of Connecticut,1986,Brookline,Massachusetts -3386,Solomon Alabi,216,113,Florida State University,1988,Kaduna,Nigeria -3387,Cole Aldrich,211,113,University of Kansas,1988,Burnsville,Minnesota -3388,Al-Farouq Aminu,206,99,Wake Forest University,1990,Atlanta,Georgia -3389,James Anderson,198,96,Oklahoma State University,1989,El Dorado,Arkansas -3390,Omer Asik,213,115,,1986,Bursa,Turkey -3391,Luke Babbitt,206,102,University of Nevada - Reno,1989,Cincinnati,Ohio -3392,Eric Bledsoe,185,86,University of Kentucky,1989,Birmingham,Alabama -3393,Trevor Booker,203,103,Clemson University,1987,Newberry,South Carolina -3394,Craig Brackins,208,104,Iowa State University,1987,Los Angeles,California -3395,Avery Bradley,188,81,University of Texas at Austin,1990,Tacoma,Washington -3396,Derrick Caracter,206,124,University of Texas at El Paso,1988,Fanwood,New Jersey -3397,Sherron Collins,180,92,University of Kansas,1987,Chicago,Illinois -3398,Marcus Cousin,211,111,University of Houston,1986,Baltimore,Maryland -3399,DeMarcus Cousins,211,122,University of Kentucky,1990,Mobile,Alabama -3400,Jordan Crawford,196,95,University of Kentucky,1986,Detroit,Michigan -3401,Ed Davis,208,108,University of North Carolina,1989,Washington,District of Columbia -3402,Zabian Dowdell,190,86,Virginia Polytechnic Institute and State University,1984,Pahokee,Florida -3403,Devin Ebanks,206,97,West Virginia University,1989,Queens,New York -3404,Semih Erden,213,108,,1986,Istanbul,Turkey -3405,Jeremy Evans,206,90,Western Kentucky University,1987,Crossett,Arkansas -3406,Patrick Ewing,213,108,Georgetown University,1962,Kingston,Jamaica -3407,Christian Eyenga,196,95,,1989,Kinshasa,Democratic Republic of the Congo -3408,Derrick Favors,208,120,Georgia Institute of Technology,1991,Atlanta,Georgia -3409,Landry Fields,201,95,Stanford University,1988,Long Beach,California -3410,Gary Forbes,201,99,University of Massachusetts Amherst,1985,Colon,Panama -3411,Paul George,206,99,California State University - Fresno,1990,Palmdale,California -3412,Blake Griffin,208,113,University of Oklahoma,1989,Oklahoma City,Oklahoma -3413,Luke Harangody,203,111,University of Notre Dame,1988,Decatur,Illinois -3414,Manny Harris,196,83,University of Michigan,1989,Detroit,Michigan -3415,Gordon Hayward,203,102,Butler University,1990,Indianapolis,Indiana -3416,Lazar Hayward,198,102,Marquette University,1986,Buffalo,New York -3417,Xavier Henry,198,99,University of Kansas,1991,Gent,Belgium -3418,Damion James,201,102,University of Texas at Austin,1987,Hobbs,New Mexico -3419,Eugene Jeter,180,79,University of Portland,1983,Los Angeles,California -3420,Armon Johnson,196,107,Bemidji State University,1920,Gonvick,Minnesota -3421,Chris Johnson,183,77,University of California,1949,Corpus Christi,Texas -3422,Wesley Johnson,201,97,Syracuse University,1987,Corsicana,Texas -3423,Dominique Jones,203,99,Mississippi State University,1975,Nashville,Tennessee -3424,Gani Lawal,206,106,Georgia Institute of Technology,1988,College Park,Georgia -3425,Jeremy Lin,190,90,Harvard University,1988,Palo Alto,California -3426,Greg Monroe,211,120,Georgetown University,1990,New Orleans,Louisiana -3427,Timofey Mozgov,216,124,,1986,St. Petersburg,Russia -3428,Hamady N'Diaye,213,106,Rutgers University,1987,Dakar,Senegal -3429,Gary Neal,193,95,Towson University,1984,Baltimore,Maryland -3430,Larry Owens,201,95,Oral Roberts University,1983,Mesa,Arizona -3431,Patrick Patterson,206,104,University of Kentucky,1989,Washington,District of Columbia -3432,Nikola Pekovic,211,139,,1986,Bijelo Polje,Montenegro -3433,Dexter Pittman,211,139,University of Texas at Austin,1988,Rosenberg,Texas -3434,Quincy Pondexter,201,99,University of Washington,1988,Fresno,California -3435,Andy Rautins,193,86,Syracuse University,1986,Syracuse,New York -3436,Samardo Samuels,206,117,University of Louisville,1989,Trelawny,Jamaica -3437,Larry Sanders,211,106,Virginia Commonwealth University,1988,Fort Pierce,Florida -3438,Kevin Seraphin,206,129,,1989,Cayenne,French Guiana -3439,Mustafa Shakur,190,86,University of Arizona,1984,Philadelphia,Pennsylvania -3440,Garret Siler,211,138,Augusta State University,1986,Augusta,Georgia -3441,Ish Smith,183,79,Wake Forest University,1988,Charlotte,North Carolina -3442,Tiago Splitter,211,111,,1985,Joinville,Brazil -3443,Lance Stephenson,196,104,University of Cincinnati,1990,Brooklyn,New York -3444,Pape Sy,201,102,,1988,Loudeac,France -3445,Evan Turner,201,99,Ohio State University,1988,Chicago,Illinois -3446,Ekpe Udoh,208,108,Baylor University,1987,Edmond,Oklahoma -3447,Ben Uzoh,190,92,University of Tulsa,1988,Houston,Texas -3448,Greivis Vasquez,198,98,University of Maryland,1987,Caracas,Venezuela -3449,John Wall,193,88,University of Kentucky,1990,Raleigh,North Carolina -3450,Willie Warren,193,92,University of Oklahoma,1989,Dallas,Texas -3451,Hassan Whiteside,213,120,Marshall University,1989,Gastonia,North Carolina -3452,Lavoy Allen,206,117,Temple University,1989,Morrisville,Pennsylvania -3453,Gustavo Ayon,208,113,,1985,Tepic,Mexico -3454,Keith Benson,208,106,Indiana University,1954,New Castle,Indiana -3455,Bismack Biyombo,206,115,,1992,Lubumbashi,Democratic Republic of the Congo -3456,MarShon Brooks,196,90,Providence College,1989,Long Branch,New Jersey -3457,Alec Burks,198,97,University of Colorado,1991,Grandview,Missouri -3458,Jimmy Butler,201,99,Marquette University,1989,Houston,Texas -3459,Derrick Byars,201,99,Vanderbilt University,1984,Memphis,Tennessee -3460,Norris Cole,188,79,Cleveland State University,1988,Dayton,Ohio -3461,Eric Dawson,206,113,Midwestern State University,1984,San Antonio,Texas -3462,Justin Dentmon,180,83,University of Washington,1985,Carbondale,Illinois -3463,Jerome Dyson,190,81,University of Connecticut,1987,Rockville,Maryland -3464,Kenneth Faried,203,103,Morehead State University,1989,Newark,New Jersey -3465,Jeff Foote,213,120,Cornell University,1987,Lockwood,New York -3466,Courtney Fortson,180,83,University of Arkansas,1988,San Antonio,Texas -3467,Jimmer Fredette,188,88,Brigham Young University,1989,Glens Falls,New York -3468,Mickell Gladness,211,99,Alabama A&M University,1986,Birmingham,Alabama -3469,Andrew Goudelock,190,90,College of Charleston,1988,Gainesville,Georgia -3470,Jordan Hamilton,178,72,University of North Texas,1948,Lexington,Kentucky -3471,Justin Harper,208,102,University of Richmond,1989,Richmond,Virginia -3472,Josh Harrellson,208,124,University of Kentucky,1989,St. Charles,Missouri -3473,Terrel Harris,196,86,Oklahoma State University,1987,Dallas,Texas -3474,Tobias Harris,190,86,University of New Orleans,1967,Monroe,Louisiana -3475,Cory Higgins,196,81,University of Colorado,1989,Danville,California -3476,Darington Hobson,201,95,University of New Mexico,1987,Las Vegas,Nevada -3477,Tyler Honeycutt,203,85,University of California - Los Angeles,1990,Los Angeles,California -3478,Dennis Horner,206,104,North Carolina State University,1988,Linwood,New Jersey -3479,Kyrie Irving,190,87,Duke University,1992,Melbourne,Australia -3480,Reggie Jackson,190,94,Boston College,1990,Pordenone,Italy -3481,Charles Jenkins,190,99,Hofstra University,1989,Brooklyn,New York -3482,Carldell Johnson,178,81,University of Alabama at Birmingham,1983,New Orleans,Louisiana -3483,Ivan Johnson,203,104,University of Oregon,1984,San Antonio,Texas -3484,JaJuan Johnson,206,113,Wake Forest University,1987,Cheyenne,Wyoming -3485,Jerome Jordan,213,114,University of Tulsa,1986,Kingston,Jamaica -3486,Cory Joseph,190,87,University of Texas at Austin,1991,Toronto,Canada -3487,Enes Kanter,211,111,,1992,Zurich,Switzerland -3488,D.J. Kennedy,211,111,,1992,, -3489,Brandon Knight,178,78,Stanford University,1975,Livingston,New Jersey -3490,Malcolm Lee,196,90,University of California - Los Angeles,1990,Riverside,California -3491,Kawhi Leonard,201,104,San Diego State University,1991,Los Angeles,California -3492,Travis Leslie,193,92,University of Georgia,1990,Atlanta,Georgia -3493,Jon Leuer,208,103,University of Wisconsin,1989,Long Lake,Minnesota -3494,DeAndre Liggins,198,94,University of Kentucky,1988,Chicago,Illinois -3495,Shelvin Mack,190,92,Butler University,1990,Lexington,Kentucky -3496,Vernon Macklin,208,102,University of Florida,1986,Portsmouth,Virginia -3497,E'Twaun Moore,208,102,,1986,, -3498,Darius Morris,193,86,University of Michigan,1991,Los Angeles,California -3499,Marcus Morris,188,88,Northwestern University,1925,, -3500,Markieff Morris,188,88,Northwestern University,1925,, -3501,Daniel Orton,208,115,University of Kentucky,1990,Oklahoma City,Oklahoma -3502,Jeremy Pargo,188,99,Gonzaga University,1986,Chicago,Illinois -3503,Chandler Parsons,208,104,University of Florida,1988,Casselberry,Florida -3504,Ryan Reid,203,105,Florida State University,1986,Lauderdale Lakes,Florida -3505,Ricky Rubio,193,87,,1990,Barcelona,Spain -3506,Josh Selby,188,83,University of Kansas,1991,Baltimore,Maryland -3507,Iman Shumpert,196,99,Georgia Institute of Technology,1990,Oak Park,Illinois -3508,Xavier Silas,196,92,Northern Illinois University,1988,San Antonio,Texas -3509,Chris Singleton,203,104,Florida State University,1989,Canton,Georgia -3510,Donald Sloan,190,92,Texas A&M University,1988,Shreveport,Louisiana -3511,Jerry Smith,188,86,University of Louisville,1987,Wauwatosa,Wisconsin -3512,Nolan Smith,188,83,Duke University,1988,Louisville,Kentucky -3513,Greg Stiemsma,211,117,University of Wisconsin,1985,Randolph,Wisconsin -3514,Julyan Stone,198,90,University of Texas at El Paso,1988,Alexandria,Virginia -3515,Isaiah Thomas,185,81,Indiana University,1961,Chicago,Illinois -3516,Lance Thomas,203,106,Duke University,1988,Brooklyn,New York -3517,Malcolm Thomas,206,102,San Diego State University,1988,Columbia,Missouri -3518,Trey Thompkins,206,107,University of Texas at Austin,1991,Toronto,Canada -3519,Klay Thompson,201,97,Washington State University,1990,Los Angeles,California -3520,Mychel Thompson,208,102,University of Minnesota,1955,Nassau,Bahamas -3521,Tristan Thompson,206,107,University of Texas at Austin,1991,Toronto,Canada -3522,Jeremy Tyler,208,117,,1991,San Diego,California -3523,Edwin Ubiles,198,92,Siena College,1986,Brooklyn,New York -3524,Jan Vesely,211,108,,1990,Ostrava,Czech Republic -3525,Nikola Vucevic,213,117,University of Southern California,1990,Morges,Switzerland -3526,Kemba Walker,203,95,University of Kentucky,1964,Roberta,Georgia -3527,Derrick Williams,190,90,University of Illinois at Urbana-Champaign,1984,Parkersburg,West Virginia -3528,Elliot Williams,196,86,University of Memphis,1989,Memphis,Tennessee -3529,Jordan Williams,188,83,New Mexico State University,1951,New Haven,Connecticut -3530,Chris Wright,203,102,University of Dayton,1988,Trotwood,Ohio -3531,Quincy Acy,201,108,Baylor University,1990,Tyler,Texas -3532,Josh Akognon,180,83,California State University - Fullerton,1986,Greenbrae,California -3533,Harrison Barnes,190,92,Northeastern University,1945,, -3534,Will Barton,198,79,University of Memphis,1991,Baltimore,Maryland -3535,Aron Baynes,208,117,Washington State University,1986,Gisborne,New Zealand -3536,Kent Bazemore,196,91,Old Dominion University,1989,Kelford,North Carolina -3537,Bradley Beal,196,93,University of Florida,1993,St. Louis,Missouri -3538,Patrick Beverley,185,83,University of Arkansas,1988,Chicago,Illinois -3539,Victor Claver,206,101,,1988,Valencia,Spain -3540,Chris Copeland,206,108,University of Colorado,1984,Orange,New Jersey -3541,Jae Crowder,198,106,Marquette University,1990,Villa Rica,Georgia -3542,Jared Cunningham,193,88,Oregon State University,1991,Oakland,California -3543,Anthony Davis,206,97,University of Texas at El Paso,1968,Oakland,California -3544,Nando De,206,97,,1968,, -3545,Andre Drummond,211,126,University of Connecticut,1993,Mount Vernon,New York -3546,Kim English,198,90,University of Missouri,1988,Baltimore,Maryland -3547,Festus Ezeli,211,115,Vanderbilt University,1989,Benin City,Nigeria -3548,Evan Fournier,201,92,,1992,Saint-Maurice,France -3549,Joel Freeland,208,113,,1987,Farnham,United Kingdom -3550,Diante Garrett,190,83,Southern Illinois University,1947,, -3551,Draymond Green,201,104,Michigan State University,1990,Saginaw,Michigan -3552,Ben Hansbrough,190,92,University of Notre Dame,1987,Poplar Bluff,Missouri -3553,Maurice Harkless,206,97,St. John's University,1993,Queens,New York -3554,John Henson,211,103,University of North Carolina,1990,Greensboro,North Carolina -3555,Justin Holiday,198,83,University of Washington,1989,Mission Hills,California -3556,Bernard James,208,108,Florida State University,1985,Savannah,Georgia -3557,John Jenkins,193,97,Vanderbilt University,1991,Nashville,Tennessee -3558,Orlando Johnson,196,99,University of California - Santa Barbara,1989,Monterey,California -3559,Darius Johnson-Odom,201,95,Syracuse University,1970,Morgan City,Louisiana -3560,DeQuan Jones,203,100,University of Miami,1990,Stone Mountain,Georgia -3561,Kevin Jones,203,113,West Virginia University,1989,Mount Vernon,New York -3562,Perry Jones,211,106,Baylor University,1991,Winnsboro,Louisiana -3563,Terrence Jones,206,114,University of Kentucky,1992,Portland,Oregon -3564,Kris Joseph,201,95,Syracuse University,1988,Montreal,Canada -3565,Michael Kidd-Gilchrist,201,105,University of Kentucky,1993,Philadelphia,Pennsylvania -3566,Viacheslav Kravtsov,213,117,,1987,Odessa,Ukraine -3567,Doron Lamb,193,95,University of Kentucky,1991,Queens,New York -3568,Jeremy Lamb,196,83,University of Connecticut,1992,Henrico Valley,Virginia -3569,Meyers Leonard,216,111,University of Illinois at Urbana-Champaign,1992,Woodbridge,Virginia -3570,Damian Lillard,190,88,Weber State University,1990,Oakland,California -3571,Scott Machado,185,92,Iona College,1990,Queens,New York -3572,Kendall Marshall,193,90,University of North Carolina,1991,Dumfries,Virginia -3573,Fab Melo,213,115,Syracuse University,1990,Juiz de Forz,Brazil -3574,Khris Middleton,203,106,Texas A&M University,1991,Charleston,South Carolina -3575,Darius Miller,203,106,University of Kentucky,1990,Maysville,Kentucky -3576,Quincy Miller,206,95,Baylor University,1992,Chicago,Illinois -3577,Donatas Motiejunas,213,100,,1990,Kaunas,Lithuania -3578,Arnett Moultrie,211,112,Mississippi State University,1990,Queens,New York -3579,Kevin Murphy,196,83,Tennessee Technological University,1990,Atlanta,Georgia -3580,Andrew Nicholson,206,113,St. Bonaventure University,1989,Mississauga,Canada -3581,Kyle O'Quinn,208,113,Norfolk State University,1990,Flushing,New York -3582,Tim Ohlbrecht,211,115,,1988,Wuppertal,Germany -3583,Miles Plumlee,211,112,Duke University,1988,Fort Wayne,Indiana -3584,Pablo Prigioni,190,83,,1977,Rio Tercero,Argentina -3585,Austin Rivers,193,90,Duke University,1992,Santa Monica,California -3586,Brian Roberts,185,78,University of Dayton,1985,Toledo,Ohio -3587,Thomas Robinson,208,107,University of Kansas,1991,Washington,District of Columbia -3588,Terrence Ross,201,93,University of Washington,1991,Portland,Oregon -3589,Robert Sacre,213,122,Gonzaga University,1989,Baton Rouge,Louisiana -3590,Mike Scott,203,107,University of Virginia,1988,Chesapeake,Virginia -3591,Tornike Shengelia,206,98,,1991,Tbilisi,Georgia -3592,Alexey Shved,198,86,,1988,Belgorod,Russia -3593,Henry Sims,208,112,Georgetown University,1990,Baltimore,Maryland -3594,Kyle Singler,203,103,Duke University,1988,Medford,Oregon -3595,Jared Sullinger,206,117,Ohio State University,1992,Columbus,Ohio -3596,Jeffery Taylor,193,79,Texas Tech University,1960,Blytheville,Arkansas -3597,Tyshawn Taylor,190,83,University of Kansas,1990,Hoboken,New Jersey -3598,Marquis Teague,188,85,University of Kentucky,1993,Indianapolis,Indiana -3599,Mirza Teletovic,206,109,,1985,Mostar,Bosnia and Herzegovina -3600,Jonas Valanciunas,213,120,,1992,Utena,Lithuania -3601,Jarvis Varnado,206,104,Mississippi State University,1988,Fairfax,Virginia -3602,Dion Waiters,193,102,Syracuse University,1991,Philadelphia,Pennsylvania -3603,Maalik Wayns,188,90,Villanova University,1991,Philadelphia,Pennsylvania -3604,Tony Wroten,198,92,University of Washington,1993,Seattle,Washington -3605,Luke Zeller,211,111,University of Notre Dame,1987,Ames,Iowa -3606,Tyler Zeller,213,114,University of North Carolina,1990,Visalia,California -3607,Steven Adams,213,115,University of Pittsburgh,1993,Rotorua,New Zealand -3608,Giannis Antetokounmpo,211,100,,1994,Athens,Greece -3609,Pero Antic,211,117,,1982,Skopje,FYR Macedonia -3610,Chris Babb,196,102,Iowa State University,1990,Arlington,Texas -3611,Anthony Bennett,203,111,University of Nevada - Las Vegas,1993,Toronto,Canada -3612,Vander Blue,193,90,Marquette University,1992,Milwaukee,Wisconsin -3613,Lorenzo Brown,196,85,North Carolina State University,1990,Roswell,Georgia -3614,Reggie Bullock,201,92,University of North Carolina,1991,Baltimore,Maryland -3615,Trey Burke,185,86,University of Michigan,1992,Columbus,Ohio -3616,Dwight Buycks,190,86,Marquette University,1989,Milwaukee,Wisconsin -3617,Nick Calathes,198,96,University of Florida,1989,Casselberry,Florida -3618,Kentavious Caldwell-Pope,196,92,University of Georgia,1993,Thomaston,Georgia -3619,Isaiah Canaan,183,91,Murray State University,1991,Biloxi,Mississippi -3620,Michael Carter-Williams,198,86,Syracuse University,1991,Hamilton,Massachusetts -3621,Dionte Christmas,196,92,Temple University,1986,Philadelphia,Pennsylvania -3622,Ian Clark,190,79,Belmont University,1991,Memphis,Tennessee -3623,Robert Covington,206,97,Tennessee State University,1990,Bellwood,Illinois -3624,Allen Crabbe,198,95,University of California,1992,Los Angeles,California -3625,Seth Curry,188,83,Duke University,1990,Charlotte,North Carolina -3626,Troy Daniels,193,92,Virginia Commonwealth University,1991,Roanoke,Virginia -3627,Luigi Datome,203,97,,1987,Montebelluna,Italy -3628,Brandon Davies,208,108,Brigham Young University,1991,Philadelphia,Pennsylvania -3629,Dewayne Dedmon,213,111,University of Southern California,1989,Lancaster,California -3630,Matthew Dellavedova,193,89,Saint Mary's College of California,1990,Maryborough,Australia -3631,Gorgui Dieng,211,109,University of Louisville,1990,Kebemer,Senegal -3632,Shane Edwards,201,99,University of Arkansas at Little Rock,1987,Los Angeles,California -3633,Vitor Faverani,211,117,,1988,Porto Alegre,Brazil -3634,Carrick Felix,198,91,Arizona State University,1990,Las Vegas,Arizona -3635,Jamaal Franklin,196,86,San Diego State University,1991,Moreno Valley,California -3636,Rudy Gobert,216,111,,1992,Saint-Quentin,France -3637,Archie Goodwin,196,90,University of Kentucky,1994,Little Rock,Arkansas -3638,Jorge Gutierrez,190,86,University of California,1988,Chihuahua,Mexico -3639,Justin Hamilton,213,117,Louisiana State University,1990,Newport Beach,California -3640,Elias Harris,203,108,Gonzaga University,1989,Speyer,Germany -3641,Solomon Hill,201,102,University of Arizona,1991,Los Angeles,California -3642,Scotty Hopson,201,92,University of Tennessee,1989,Hopkinsville,Kentucky -3643,Robbie Hummel,203,97,Purdue University,1989,Valparaiso,Indiana -3644,Sergey Karasev,201,94,,1993,St. Petersburg,Russia -3645,Ryan Kelly,211,104,Duke University,1991,Carmel,New York -3646,Ognjen Kuzmic,216,113,,1990,Doboj,Bosnia and Herzegovina -3647,Shane Larkin,180,79,University of Miami,1992,Cincinnati,Ohio -3648,Ricky Ledo,201,88,,1992,Providence,Rhode Island -3649,Alex Len,216,117,University of Maryland,1993,Antratsit,Ukraine -3650,Ray McCallum,190,86,University of Detroit Mercy,1991,Madison,Wisconsin -3651,C.J. McCollum,190,86,,1991,, -3652,Ben McLemore,196,88,University of Kansas,1993,St. Louis,Missouri -3653,Gal Mekel,190,86,Wichita State University,1988,Petah Tikva,Israel -3654,Tony Mitchell,201,92,Purdue University,1966,Toledo,Ohio -3655,Shabazz Muhammad,198,101,University of California - Los Angeles,1992,Los Angeles,California -3656,Erik Murphy,208,104,University of Florida,1990,Lyon,France -3657,Toure' Murry,196,88,Wichita State University,1989,Houston,Texas -3658,Mike Muscala,211,108,Bucknell University,1991,St. Louis Park,Minnesota -3659,Nemanja Nedovic,190,87,,1991,Nova Varos,Serbia -3660,James Nunnally,201,92,University of California - Santa Barbara,1990,San Jose,California -3661,Victor Oladipo,193,95,Indiana University,1992,Silver Spring,Maryland -3662,Kelly Olynyk,213,107,Gonzaga University,1991,Toronto,Canada -3663,Arinze Onuaku,206,115,Syracuse University,1987,Lanham,Maryland -3664,Mason Plumlee,211,111,Duke University,1990,Fort Wayne,Indiana -3665,Otto Porter,203,89,Georgetown University,1993,St. Louis,Missouri -3666,Phil Pressey,180,79,University of Missouri,1991,Dallas,Texas -3667,Miroslav Raduljica,213,113,,1988,Belgrade,Serbia -3668,Andre Roberson,196,83,Oral Roberts University,1955,Chattanooga,Tennessee -3669,Dennis Schroder,185,78,,1993,Braunschweig,Germany -3670,Peyton Siva,183,83,University of Louisville,1990,Seattle,Washington -3671,Tony Snell,201,90,University of New Mexico,1991,Riverside,California -3672,James Southerland,203,97,Syracuse University,1990,Queens,New York -3673,D.J. Stephens,203,97,,1990,, -3674,Adonis Thomas,201,90,University of Memphis,1993,Memphis,Tennessee -3675,Hollis Thompson,203,93,Georgetown University,1991,Pasadena,California -3676,Casper Ware,178,79,California State University - Long Beach,1990,Cerritos,California -3677,Royce White,203,95,University of South Alabama,1959,Tuskegee,Alabama -3678,Jeff Withey,213,104,University of Kansas,1990,San Diego,California -3679,Nate Wolters,193,86,South Dakota State University,1991,St. Cloud,Minnesota -3680,Cody Zeller,213,108,Indiana University,1992,Washington,Indiana -3681,Jordan Adams,196,94,University of California - Los Angeles,1994,Atlanta,Georgia -3682,Furkan Aldemir,208,108,,1991,Konak,Turkey -3683,Kyle Anderson,206,104,University of California - Los Angeles,1993,New York,New York -3684,Cameron Bairstow,206,113,University of New Mexico,1990,Brisbane,Australia -3685,Jerrelle Benimon,203,111,Towson University,1991,Warrenton,Virginia -3686,Sim Bhullar,226,163,New Mexico State University,1992,Ontario,Canada -3687,Tarik Black,206,113,University of Kansas,1991,Memphis,Tennessee -3688,Bojan Bogdanovic,198,92,,1992,Belgrade,Serbia -3689,Jabari Brown,193,97,University of Missouri,1992,Oakland,California -3690,Markel Brown,190,83,Murray State University,1974,West Memphis,Arkansas -3691,Bruno Caboclo,206,98,,1995,Osasco,Brazil -3692,Clint Capela,206,98,,1995,, -3693,Will Cherry,183,83,University of Montana,1991,Oakland,California -3694,Patrick Christopher,196,94,University of California,1988,Compton,California -3695,Jordan Clarkson,196,87,University of Missouri,1992,Tampa,Florida -3696,Jack Cooley,206,117,University of Notre Dame,1991,Evanston,Illinois -3697,Bryce Cotton,185,74,Providence College,1992,Tucson,Arizona -3698,Andre Dawkins,196,97,Duke University,1991,Fairfax,Virginia -3699,Spencer Dinwiddie,198,90,University of Colorado,1993,Los Angeles,California -3700,Zoran Dragic,196,90,,1989,Ljubljana,Slovenia -3701,Cleanthony Early,203,95,Wichita State University,1991,Middletown,New York -3702,James Ennis,201,95,California State University - Long Beach,1990,Ventura,California -3703,Tyler Ennis,190,87,Syracuse University,1994,Brampton,Canada -3704,Dante Exum,198,86,,1995,Melbourne,Australia -3705,Tim Frazier,185,77,Pennsylvania State University,1990,Houston,Texas -3706,Langston Galloway,188,90,Saint Joseph's University,1991,Baton Rouge,Louisiana -3707,Aaron Gordon,206,99,University of Arizona,1995,San Jose,California -3708,Drew Gordon,206,111,University of New Mexico,1990,San Jose,California -3709,Jerami Grant,203,95,Syracuse University,1994,Portland,Oregon -3710,Erick Green,193,83,Virginia Polytechnic Institute and State University,1991,Inglewood,California -3711,JaMychal Green,206,102,University of Alabama,1990,Montgomery,Alabama -3712,P.J. Hairston,206,102,,1990,, -3713,Gary Harris,193,95,Michigan State University,1994,Fishers,Indiana -3714,Joe Harris,198,99,University of Virginia,1991,Chelan,Washington -3715,Rodney Hood,203,93,Duke University,1992,Meridian,Mississippi -3716,Joe Ingles,203,102,,1987,Happy Valley,Australia -3717,Cory Jefferson,206,98,Baylor University,1990,Tacoma,Washington -3718,Grant Jerrett,208,106,University of Arizona,1993,Costa Mesa,California -3719,Nick Johnson,190,91,University of Arizona,1992,Tempe,Arizona -3720,Tyler Johnson,193,84,California State University - Fresno,1992,Grand Forks,North Dakota -3721,Sean Kilpatrick,193,95,University of Cincinnati,1990,Yonkers,New York -3722,Alex Kirk,213,111,University of New Mexico,1991,Los Alamos,New Mexico -3723,Joffrey Lauvergne,211,99,,1991,Mulhouse,France -3724,Zach LaVine,196,85,University of California - Los Angeles,1995,Renton,Washington -3725,Kalin Lucas,185,88,Michigan State University,1989,Sterling Heights,Michigan -3726,Devyn Marble,198,90,University of Iowa,1992,Southfield,Michigan -3727,James Michael,198,90,,1992,, -3728,K.J. McDaniels,198,90,,1992,, -3729,Doug McDermott,203,102,Creighton University,1992,Grand Forks,North Dakota -3730,Mitch McGary,208,115,University of Michigan,1992,Chesterton,Indiana -3731,Jerel McNeal,190,90,Marquette University,1987,Chicago,Illinois -3732,Elijah Millsap,198,102,University of Alabama at Birmingham,1987,Grambling,Louisiana -3733,Nikola Mirotic,208,99,,1991,Podgorica,Montenegro -3734,Eric Moreland,208,107,Oregon State University,1991,Houston,Texas -3735,Shabazz Napier,185,79,University of Connecticut,1991,Roxbury,Massachusetts -3736,Nerlens Noel,211,103,University of Kentucky,1994,Malden,Massachusetts -3737,Lucas Nogueira,213,109,,1992,Sao Goncalo,Brazil -3738,Jusuf Nurkic,213,127,,1994,Tuzla,Bosnia and Herzegovina -3739,Johnny O'Bryant,206,116,Louisiana State University,1993,Cleveland,Mississippi -3740,Kostas Papanikolaou,203,102,,1990,Trikala,Greece -3741,Jabari Parker,203,113,Duke University,1995,Chicago,Illinois -3742,Adreian Payne,208,107,Michigan State University,1991,Dayton,Ohio -3743,Elfrid Payton,193,83,University of Louisiana at Lafayette,1994,Gretna,Louisiana -3744,Dwight Powell,211,108,Stanford University,1991,Toronto,Canada -3745,Julius Randle,206,113,University of Kentucky,1994,Dallas,Texas -3746,Damjan Rudez,208,103,,1986,Zagreb,Croatia -3747,JaKarr Sampson,211,106,University of California,1983,Inglewood,California -3748,Marcus Smart,193,99,Oklahoma State University,1994,Flower Mound,Texas -3749,Russ Smith,183,74,University of Louisville,1991,New York,New York -3750,Nik Stauskas,198,92,University of Michigan,1993,Mississauga,Canada -3751,David Stockton,180,74,Gonzaga University,1991,Spokane,Washington -3752,Jarnell Stokes,206,119,University of Tennessee,1994,Memphis,Tennessee -3753,Noah Vonleh,208,108,Indiana University,1995,Haverhill,Massachusetts -3754,T.J. Warren,208,108,,1995,, -3755,David Wear,208,104,University of California - Los Angeles,1990,Long Beach,California -3756,Travis Wear,208,104,University of California - Los Angeles,1990,Long Beach,California -3757,Shayne Whittington,211,113,Western Michigan University,1991,Paw Paw,Michigan -3758,Andrew Wiggins,203,90,University of Kansas,1995,Toronto,Canada -3759,C.J. Wilcox,203,90,,1995,, -3760,James Young,198,97,University of Kentucky,1995,Flint,Michigan -3761,Cliff Alexander,203,111,University of Kansas,1995,Chicago,Illinois -3762,Justin Anderson,198,103,University of Virginia,1993,Montross,Virginia -3763,Thanasis Antetokounmpo,201,92,,1992,Athens,Greece -3764,Keith Appling,185,83,Michigan State University,1992,Detroit,Michigan -3765,Nemanja Bjelica,208,108,,1988,Belgrade,Serbia -3766,Devin Booker,198,93,University of Kentucky,1996,Grand Rapids,Michigan -3767,Anthony Brown,206,111,DePaul University,1981,Chicago,Illinois -3768,Willie Cauley-Stein,213,108,University of Kentucky,1993,Spearville,Kansas -3769,Rakeem Christmas,206,113,Syracuse University,1991,Irvington,New Jersey -3770,Coty Clarke,201,105,University of Arkansas,1992,Antioch,Tennessee -3771,Pat Connaughton,196,93,University of Notre Dame,1993,Arlington,Massachusetts -3772,Branden Dawson,198,102,Michigan State University,1993,Gary,Indiana -3773,Bryce Dejean-Jones,198,94,Iowa State University,1992,Los Angeles,California -3774,Sam Dekker,206,104,University of Wisconsin,1994,Sheboygan,Wisconsin -3775,Duje Dukan,206,99,University of Wisconsin,1991,Split,Croatia -3776,Jarell Eddie,201,98,Virginia Polytechnic Institute and State University,1991,Tampa,Florida -3777,Cristiano Felicio,208,124,,1992,Pouso Alegre,Brazil -3778,Jerian Grant,203,95,Syracuse University,1994,Portland,Oregon -3779,Montrezl Harrell,203,108,University of Louisville,1994,Tarboro,North Carolina -3780,Aaron Harrison,198,95,University of Kentucky,1994,San Antonio,Texas -3781,Mario Hezonja,203,97,,1995,Dubrovnik,Croatia -3782,Darrun Hilliard,198,92,Villanova University,1993,Bethlehem,Pennsylvania -3783,Rondae Hollis-Jefferson,201,99,University of Arizona,1995,Chester,Pennsylvania -3784,Richaun Holmes,208,111,Bowling Green State University,1993,Lockport,Illinois -3785,Marcelo Huertas,190,90,,1983,Sao Paulo,Brazil -3786,Josh Huestis,201,104,Stanford University,1991,Webster,Texas -3787,R.J. Hunter,201,104,,1991,, -3788,Damien Inglis,203,111,,1995,Cayenne,French Guiana -3789,Stanley Johnson,203,99,Murray State University,1944,Clairton,Pennsylvania -3790,Nikola Jokic,208,113,,1995,Sombor,Serbia -3791,Tyus Jones,188,88,Duke University,1996,Burnsville,Minnesota -3792,Frank Kaminsky,213,109,University of Wisconsin,1993,Winfield,Illinois -3793,Sasha Kaun,211,117,University of Kansas,1985,Tomsk,Russia -3794,Kevon Looney,206,99,University of California - Los Angeles,1996,Milwaukee,Wisconsin -3795,Trey Lyles,208,106,University of Kentucky,1995,Saskatoon,Canada -3796,Boban Marjanovic,221,131,,1988,Zajecar,Serbia -3797,Jarell Martin,208,108,Louisiana State University,1994,Baton Rouge,Louisiana -3798,T.J. McConnell,208,108,,1994,, -3799,Chris McCullough,211,90,Syracuse University,1995,Bronx,New York -3800,Jordan McRae,198,83,University of Tennessee,1991,Savannah,Georgia -3801,Salah Mejri,216,111,,1986,Jendouba,Tunisia -3802,Jordan Mickey,203,106,Louisiana State University,1994,Dallas,Texas -3803,Luis Montero,201,83,Westchester CC,1993,Santo Domingo,Dominican Republic -3804,Emmanuel Mudiay,196,90,,1996,Kinshasa,Democratic Republic of the Congo -3805,Xavier Munford,196,90,,1996,, -3806,Raul Neto,185,81,,1992,Belo Horizonte,Brazil -3807,J.J. O'Brien,185,81,,1992,, -3808,Jahlil Okafor,211,124,Duke University,1995,Chicago,Illinois -3809,Kelly Oubre,201,92,University of Kansas,1995,New Orleans,Louisiana -3810,Lamar Patterson,196,102,University of Pittsburgh,1991,Lancaster,Pennsylvania -3811,Cameron Payne,190,83,Murray State University,1994,Memphis,Tennessee -3812,Tibor Pleiss,221,116,,1989,Bergisch Gladbach,Germany -3813,Bobby Portis,211,104,University of Arkansas,1995,Little Rock,Arkansas -3814,Kristaps Porzingis,221,108,,1995,Liepaja,Latvia -3815,Norman Powell,193,97,University of California - Los Angeles,1993,San Diego,California -3816,Willie Reed,206,106,Grambling State University,1942,Hico,Louisiana -3817,Josh Richardson,198,90,University of Tennessee,1993,Edmond,Oklahoma -3818,Terry Rozier,188,86,University of Louisville,1994,Youngstown,Ohio -3819,D'Angelo Russell,188,86,,1994,, -3820,Jonathon Simmons,185,83,New York University,1924,Birmingham,Alabama -3821,Alex Stepheson,208,122,University of Southern California,1987,Los Angeles,California -3822,Walter Tavares,221,117,,1992,Maio,Cape Verde -3823,Axel Toupane,201,89,,1992,Mulhouse,France -3824,Karl-Anthony Towns,213,110,University of Kentucky,1995,Edison,New Jersey -3825,Myles Turner,211,110,University of Texas at Austin,1996,Bedford,Texas -3826,Rashad Vaughn,198,91,University of Nevada - Las Vegas,1996,Minneapolis,Minnesota -3827,Briante Weber,188,74,Virginia Commonwealth University,1992,Chesapeake,Virginia -3828,Alan Williams,198,90,Drake University,1948,, -3829,Justise Winslow,201,102,Duke University,1996,Houston,Texas -3830,Christian Wood,211,99,University of Nevada - Las Vegas,1995,Long Beach,California -3831,Delon Wright,196,83,University of Utah,1992,Los Angeles,California -3832,Joe Young,188,81,University of Oregon,1992,Houston,Texas -3833,Alex Abrines,198,86,,1993,Palma de Mallorca,Spain -3834,Ron Baker,193,99,Wichita State University,1993,Hays,Kansas -3835,Wade Baldwin,193,91,Vanderbilt University,1996,Belle Mead,New Jersey -3836,Malik Beasley,196,88,Florida State University,1996,Atlanta,Georgia -3837,DeAndre' Bembry,198,95,Saint Joseph's University,1994,Charlotte,North Carolina -3838,Dragan Bender,216,102,,1997,Capljina,Bosnia and Herzegovina -3839,Ben Bentil,206,106,Providence College,1995,Ghana, -3840,Davis Bertans,208,95,,1992,Valmiera,Latvia -3841,Joel Bolomboy,206,106,Weber State University,1994,Kiev,Ukraine -3842,Malcolm Brogdon,196,97,University of Virginia,1992,Atlanta,Georgia -3843,Jaylen Brown,193,97,University of Missouri,1992,Oakland,California -3844,Nicolas Brussino,201,88,,1993,Santa Fe,Argentina -3845,Marquese Chriss,208,105,University of Washington,1997,Sacramento,California -3846,Semaj Christon,190,86,Xavier University,1992,Cincinnati,Ohio -3847,Quinn Cook,188,83,Duke University,1993,Washington,District of Columbia -3848,Deyonta Davis,211,107,Michigan State University,1996,Muskegon,Michigan -3849,Malcolm Delaney,190,86,Virginia Polytechnic Institute and State University,1989,Baltimore,Maryland -3850,Cheick Diallo,206,99,University of Kansas,1996,Kayes,Mali -3851,Kris Dunn,193,95,Providence College,1994,New London,Connecticut -3852,Henry Ellenson,211,111,Marquette University,1997,Rice Lake,Wisconsin -3853,Joel Embiid,213,113,University of Kansas,1994,Yaounde,Cameroon -3854,Kay Felder,175,79,Oakland University,1995,Detroit,Michigan -3855,Yogi Ferrell,183,81,Indiana University,1993,Indianapolis,Indiana -3856,Dorian Finney-Smith,203,99,University of Florida,1993,Portsmouth,Virginia -3857,Bryn Forbes,190,86,Michigan State University,1993,Lansing,Michigan -3858,Patricio Garino,198,95,George Washington University,1993,Buenos Aires,Argentina -3859,Michael Gbinije,201,90,Syracuse University,1992,Hartford,Connecticut -3860,Marcus Georges-Hunt,196,97,Georgia Institute of Technology,1994,Miami,Florida -3861,Jonathan Gibson,188,83,New Mexico State University,1987,West Covina,California -3862,Treveon Graham,198,99,Virginia Commonwealth University,1993,Washington,District of Columbia -3863,A.J. Hammons,198,99,,1993,, -3864,Andrew Harrison,198,96,University of Kentucky,1994,San Antonio,Texas -3865,Juan Hernangomez,206,104,,1995,Madrid,Spain -3866,Willy Hernangomez,211,108,,1994,Madrid,Spain -3867,Buddy Hield,193,97,University of Oklahoma,1993,Freeport,Bahamas -3868,Danuel House,201,93,Texas A&M University,1993,Houston,Texas -3869,Brandon Ingram,206,86,Duke University,1997,Kinston,North Carolina -3870,Demetrius Jackson,185,91,University of Notre Dame,1994,South Bend,Indiana -3871,Pierre Jackson,178,81,Baylor University,1991,Las Vegas,Nevada -3872,Brice Johnson,208,95,University of Utah,1979,Salt Lake City,Utah -3873,Damian Jones,190,83,University of Houston,1976,Galveston,Texas -3874,Derrick Jones,203,100,University of Miami,1990,Stone Mountain,Georgia -3875,Mindaugas Kuzminskas,206,97,,1989,Vilnius,Lithuania -3876,Skal Labissiere,211,102,University of Kentucky,1996,Port-Au-Prince,Haiti -3877,Nicolas Laprovittola,193,81,,1990,Buenos Aires,Argentina -3878,Jake Layman,206,95,University of Maryland,1994,Norwood,Massachusetts -3879,Caris LeVert,201,92,University of Michigan,1994,Columbus,Ohio -3880,Shawn Long,206,115,University of Louisiana at Lafayette,1993,Morgan City,Louisiana -3881,Timothe Luwawu-Cabarrot,198,92,,1995,Cannes,France -3882,Thon Maker,216,97,,1997,South Sudan, -3883,Patrick McCaw,201,83,University of Nevada - Las Vegas,1995,St. Louis,Missouri -3884,Sheldon McClellan,196,90,University of Miami,1992,Houston,Texas -3885,Rodney McGruder,193,92,Kansas State University,1991,Landover,Maryland -3886,Dejounte Murray,196,77,University of Washington,1996,Seattle,Washington -3887,Jamal Murray,193,93,University of Kentucky,1997,Kitchener,Canada -3888,Maurice Ndour,206,90,Ohio University,1992,Sindia,Senegal -3889,Georges Niang,203,104,Iowa State University,1993,Lawrence,Massachusetts -3890,David Nwaba,193,94,California Polytechnic State University - San Luis Obispo,1993,Los Angeles,California -3891,Daniel Ochefu,211,111,Villanova University,1993,Baltimore,Maryland -3892,Chinanu Onuaku,208,111,University of Louisville,1996,Baltimore,Maryland -3893,Georgios Papagiannis,216,108,,1997,Amarousio,Greece -3894,Gary Payton,193,81,Oregon State University,1968,Oakland,California -3895,Marshall Plumlee,211,111,Duke University,1990,Fort Wayne,Indiana -3896,Jakob Poeltl,213,112,University of Utah,1995,Vienna,Austria -3897,Alex Poythress,201,107,University of Kentucky,1993,Savannah,Georgia -3898,Tim Quarterman,198,88,Louisiana State University,1994,Savannah,Georgia -3899,Chasson Randle,188,83,Stanford University,1993,Rock Island,Illinois -3900,Malachi Richardson,198,92,Syracuse University,1996,Trenton,New Jersey -3901,Domantas Sabonis,211,108,Gonzaga University,1996,Portland,Oregon -3902,Dario Saric,208,101,,1994,Sibenik,Croatia -3903,Tomas Satoransky,201,95,,1991,Prague,Czech Republic -3904,Wayne Selden,196,104,University of Kansas,1994,Roxbury,Massachusetts -3905,Pascal Siakam,206,104,New Mexico State University,1994,Douala,Cameroon -3906,Diamond Stone,211,115,University of Maryland,1997,Milwaukee,Wisconsin -3907,Edy Tavares,211,115,,1997,, -3908,Isaiah Taylor,190,77,University of Texas at Austin,1994,Hayward,California -3909,Mike Tobey,213,117,University of Virginia,1994,Monroe,New York -3910,Tyler Ulis,178,68,University of Kentucky,1996,Detroit,Michigan -3911,Jarrod Uthoff,206,100,University of Iowa,1993,Cedar Rapids,Iowa -3912,Denzel Valentine,198,96,Michigan State University,1993,Lansing,Michigan -3913,Fred VanVleet,183,88,Wichita State University,1994,Rockford,Illinois -3914,Taurean Waller-Prince,183,88,,1994,, -3915,Okaro White,203,92,Florida State University,1992,Clearwater,Florida -3916,Isaiah Whitehead,193,96,Seton Hall University,1995,Brooklyn,New York -3917,Troy Williams,198,97,South Carolina State University,1969,Columbia,South Carolina -3918,Kyle Wiltjer,208,108,Gonzaga University,1992,Portland,Oregon -3919,Stephen Zimmerman,213,108,University of Nevada - Las Vegas,1996,Hendersonville,Tennessee -3920,Paul Zipser,203,97,,1994,Heidelberg,Germany -3921,Ivica Zubac,216,120,,1997,Mostar,Bosnia and Herzegovina