代码搜索:Graham
找到约 390 项符合「Graham」的源代码
代码结果 390
www.eeworm.com/read/428698/8851714
sln graham.sln
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "graham", "graham.vcproj", "{0C20B806-0448-4AA9-B1BF-317A1730C39C}"
ProjectSection(Pro
www.eeworm.com/read/428698/8851722
sln graham.sln
Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "graham", "graham.vcproj", "{26C22072-8096-46E1-9340-2F97F75902
www.eeworm.com/read/428698/8851727
cpp graham.cpp
//
// This program uses the Graham scan algorithm to calculate the convex
// hull of a batch of points
//
#include
#include
#include
#include
#include
www.eeworm.com/read/150701/12270637
c graham.c
/*
This code is described in "Computational Geometry in C" (Second Edition),
Chapter 3. It is not written to be comprehensible without the
explanation in that book.
Input: 2n integer coordinates of
www.eeworm.com/read/150701/12270640
graham readme.graham
graham.c C code for 2D convex hull.
macros.h List macros.
Makefile make file for compilation
i.10 Sample input file.
i.19 Sample input file.
README.graham This file.
www.eeworm.com/read/100246/15879775
c graham.c
/*
This code is described in "Computational Geometry in C" (Second Edition),
Chapter 3. It is not written to be comprehensible without the
explanation in that book.
Input: 2n integer coordinat
www.eeworm.com/read/100246/15879776
h graham.h
#ifndef MACRO_H__
#define MACRO_H__
#define EXIT_FAILURE 1
char *malloc();
#define NEW(p, type) if ((p=(type *) malloc (sizeof(type))) == NULL) {\
printf ("NEW: Out of Memory!\n");\
exit
www.eeworm.com/read/165806/10050916