代码搜索:vgetty 有哪些应用?
找到约 10,000 项符合「vgetty 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/39901/1137121
xls dsp应用系统.xls
www.eeworm.com/read/40995/1141629
pdf plc应用实例.pdf
www.eeworm.com/read/296949/3896240
h des应用测试.h
// DES应用测试.h : main header file for the DES应用测试 application
//
#if !defined(AFX_DES_H__EED64585_B827_4C63_8AA1_F3F18D086925__INCLUDED_)
#define AFX_DES_H__EED64585_B827_4C63_8AA1_F3F18D086925__IN
www.eeworm.com/read/296949/3896242
plg des应用测试.plg
Build Log
--------------------Configuration: DES应用测试 - Win32 Debug--------------------
Command Lines
Creating temporary file "D:\DOCUME~1\ADMIN
www.eeworm.com/read/296949/3896244
cpp des应用测试.cpp
// DES应用测试.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "DES应用测试.h"
#include "DES应用测试Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
s
www.eeworm.com/read/296949/3896246
clw des应用测试.clw
; CLW file contains information for the MFC ClassWizard
[General Info]
Version=1
LastClass=DESUse
LastTemplate=CDialog
NewFileInclude1=#include "stdafx.h"
NewFileInclude2=#include "DES应用测试.h"
www.eeworm.com/read/296949/3896247
rc des应用测试.rc
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
#define APSTUDIO_READONLY_SYMBOLS
/////////////////////////////////////////////////////////////////////////////
www.eeworm.com/read/296949/3896248
dsw des应用测试.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/296949/3896259
dsp des应用测试.dsp
# Microsoft Developer Studio Project File - Name="DES应用测试" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) A
www.eeworm.com/read/473179/6857543
txt 线段树应用.txt
求面积:
1) 坐标离散化
2) 垂直边按x坐标排序
3) 从左往右用线段树处理垂直边
累计每个离散x区间长度和线段树长度的乘积
求周长:
1) 坐标离散化
2) 垂直边按x坐标排序, 第二关键字为入边优于出边
3) 从左往右用线段树处理垂直边
在每个离散点上先加入所有入边, 累计线段树长度变化值
再删除所有出边, 累计线段树长度变化值
4) 水平边按y ...