代码搜索:矩形图
找到约 10,000 项符合「矩形图」的源代码
代码结果 10,000
www.eeworm.com/read/456941/7336486
_c oc2上输出矩形波._c
//ICC-AVR application builder : 2009-3-11 13:07:26
// Target : M8
// Crystal: 8.0000Mhz
#include
#include
void port_init(void)
{
PORTB = 0x00;
DDRB = 0x00;
PORTC
www.eeworm.com/read/456941/7336487
mak oc2上输出矩形波.mak
CC = iccavr
CFLAGS = -e -D__ICC_VERSION="7.14C" -DATMega8 -l -g -Mavr_enhanced_small -Wa-W
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -g -e:0x2000 -Wl-W -bfunc_lit:0x26.0x2000 -dram_end:0x45f -bdata:0
www.eeworm.com/read/407780/11410795
txt poj 1177 矩形周长并 线段树.txt
//POJ 1177
/*
//#include
#include
//include
#include
#include
#include
//using namespace std;
#define NMAX 30000
#define MAX 9
www.eeworm.com/read/405817/11456413
cpp 覆盖的面积(线段树矩形交).cpp
//线段树维护,求矩形交
#include
#include
#include
using namespace std;
struct node {
double l,r;
node * pl, * pr;
double len;//测度,求矩形并
int cover;//完全覆盖数
double rel
www.eeworm.com/read/473191/6857832
txt poj 1177 矩形周长并 线段树.txt
//POJ 1177
/*
//#include
#include
//include
#include
#include
#include
//using namespace std;
#define NMAX 30000
#define MAX 9
www.eeworm.com/read/354331/10363551
mht 图结构算法cai课件 图.mht
From:
Subject: =?gb2312?B?zby94bm5y+O3qENBSb/OvP4=?=
Date: Wed, 6 Sep 2000 09:48:49 +0800
MIME-Version: 1.0
Content-Type: multipart/related;
type="multipart/
www.eeworm.com/read/192685/8366716
txt 能否用winsock传送picture.hdc.txt
传递HDC句柄没有任何意义,因为这个句柄只有在当前机器的当前时刻才有意义。如果要传递Picture中的图象,先使用SavePicture语句存盘,然后象传递普通文件一样传递保存的图象文件。
www.eeworm.com/read/430723/8730672
dat bookinfo.dat
[General Information]
书名=图象工程(附册)——教学参考及习题解答
作者=
页数=229
SS号=0
出版日期=
www.eeworm.com/read/427739/8923770
txt back_ground.txt
背景图的实现:
背景图的实现可以采用覆盖和混合的操作来实现。
采用覆盖操作是将实图直接覆盖背景图,这样实现的好处是简单,方便,且处理速度快;
采用混合的操作是将实图和背景图进行或操作来实现的,这样实现的好处是不会丢失背景图象,但是由于在处理上有些复杂,且处理速度慢,所以在一般的场合下不必采用此项技术。
bill.zhang ...
www.eeworm.com/read/357794/10201036
txt 1153.txt
题1153:可以看作是求一个最多含有26个结点(26个字母)的有向欧拉图或欧拉道路。
定理:连通有向图G含有有向欧拉道路当且仅当除最多两个结点外,其余每个结点的入度等于其出度,而这两个结点中一个结点的入度比其出度多1,另一结点的入度比其出度少1.
算法:1.将图G看作无向图,判断其是否连通。
2.判断其点的度数是否满足定理的条件。
...