19. 二叉树的镜像(递归)即:交换所有节点的左右子树。从下往上 或 从上往下
都可以。#include #include using namespace std;struct BTNode{ int v; // default
positive Integer. BTNode *pLeft; B....
分类:
其他好文 时间:
2014-05-01 12:41:11
阅读次数:
416
---恢复内容开始---直接上代码internal static class LibVlcAPI {
internal struct PointerToArrayOfPointerHelper { [MarshalAs(UnmanagedTyp...
分类:
其他好文 时间:
2014-05-01 10:26:29
阅读次数:
317
简单最小生成树,继续我的kruskal#include#include#include#includeusing namespace std;const int
MAX=1000000;struct node{ int left,right,cost;}road[MAX];bool cmp(n...
分类:
其他好文 时间:
2014-05-01 09:28:42
阅读次数:
333
---恢复内容开始---直接上代码internal static class LibVlcAPI {
internal struct PointerToArrayOfPointerHelper { [MarshalAs(UnmanagedTyp...
分类:
其他好文 时间:
2014-05-01 07:20:23
阅读次数:
427
Class1 typedef struct objc_class *Class; 1 struct
objc_class { 2 Class isa OBJC_ISA_AVAILABILITY; 3 4 #if !__OBJC2__ 5 Class
super_class ...
分类:
移动开发 时间:
2014-05-01 07:13:10
阅读次数:
502
---恢复内容开始---直接上代码internal static class LibVlcAPI {
internal struct PointerToArrayOfPointerHelper { [MarshalAs(UnmanagedTyp...
分类:
其他好文 时间:
2014-05-01 05:39:37
阅读次数:
250
---恢复内容开始---直接上代码internal static class LibVlcAPI {
internal struct PointerToArrayOfPointerHelper { [MarshalAs(UnmanagedTyp...
分类:
其他好文 时间:
2014-05-01 04:00:03
阅读次数:
368
用c语言实现
#include
#include
#include
using namespace std;
typedef struct node
{
char x;
struct node *next;
}chan;
chan *root = new chan;
char a[100010];
int main()
{
while(scanf("%...
分类:
编程语言 时间:
2014-04-29 13:47:20
阅读次数:
358
以前的代码太挫了,重新整理dlx,学习HH把精确覆盖,重复覆盖整合在一起。
代码:
struct DLX{
const static int maxn=20010;
#define FF(i,A,s) for(int i = A[s];i != s;i = A[i])
int L[maxn],R[maxn],U[maxn],D[maxn];
int size,c...
分类:
其他好文 时间:
2014-04-29 13:43:20
阅读次数:
370
floyd求最短路。
注意图是有向图。。。
#include
#include
#include
using namespace std;
struct node
{
int x,y,id;
}edge[205];
int dis[205][205];
int main()
{
int c,T,n,a,b,op;
while(scanf("%d",&T...
分类:
其他好文 时间:
2014-04-29 13:21:23
阅读次数:
313