Given a binary tree struct TreeLinkNode {
TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next
pointe...
分类:
其他好文 时间:
2014-07-22 23:16:35
阅读次数:
373
一、使用Windows API创建一个窗口二、创建一个Swap Chain(交换链)
这一步需要用到一个名为DXGI_SWAP_CHAIN_DESC的结构体,其详细定义如下:typedef struct DXGI_SWAP_CHAIN_DESC
{ DXGI_MODE_DESC Buffer...
分类:
其他好文 时间:
2014-07-22 23:13:54
阅读次数:
520
半平面交模板const double pi= acos(-1.0);#define
arc(x) (x / 180 * pi)const double EPS = 1e-8;const int Max_N = 105;struct Point{
double x,y; Point(){}...
分类:
其他好文 时间:
2014-04-30 17:00:01
阅读次数:
621
1、环境说明: (Gentoo Linux环境) # uname -aLinux Crob
2.6.34-gentoo #1 SMP Mon May 31 15:45:25 CST 2010 x86_64 Intel(R) Core(TM)2 Duo
CPU E7500 @ 2.93GHz Genu...
分类:
其他好文 时间:
2014-04-30 16:53:08
阅读次数:
518
本文主要介绍两种在windows下调用外部exe程序的方法:1、使用SHELLEXECUTEINFO
和ShellExecuteExSHELLEXECUTEINFO 结构体的定义如下: 1 typedef struct _SHELLEXECUTEINFO { 2
DWORD cbSize...
背包问题时间限制:3000ms |
内存限制:65535KB难度:3描述现在有很多物品(它们是可以分割的),我们知道它们每个物品的单位重量的价值v和重量w(1#include#include#include
#include#includeusing namespace std;struct ba....
分类:
其他好文 时间:
2014-04-30 15:46:29
阅读次数:
443
不完整声明1234567891011121314151617181920212223242526/*
方法一 */struct tag_a{struct tag_b *bp; /* 这里struct tag_b 还没有定义,但编译器可以接受 */int
value;};struct tag_b{st...
分类:
其他好文 时间:
2014-04-29 16:54:53
阅读次数:
366
poj 1279 求半平面交的
面积题目来源:http://poj.org/problem?id=1279分析: 求半平面交的 面积代码如下:const double EPS =
1e-8;const int Max_N = 1505;struct Point{ double x,y; ...
分类:
其他好文 时间:
2014-04-29 16:35:46
阅读次数:
499
未命名java.runtime.name=Java(TM) SE Runtime
Environmentsun.boot.library.path=D:\Program
Files\Java\jdk1.6.0_31\jre\binjava.vm.version=0.2-b02-internal, 1...
分类:
编程语言 时间:
2014-04-29 11:26:47
阅读次数:
495
矩阵乘法,用DP做各种wa,后来发现原因了。 1 #include 2 #include 3 4
typedef struct { 5 int map[20][20]; 6 } matrix_st; 7 8 matrix_st res, org; 9 int
n, m;10 11 m...
分类:
其他好文 时间:
2014-04-29 11:26:46
阅读次数:
418