代码搜索:非压缩
找到约 10,000 项符合「非压缩」的源代码
代码结果 10,000
www.eeworm.com/read/244976/12827997
cpp 2615 dfs(非递归).cpp
//zoj 2615 搜索(非递归)
/*
给出一颗最多包含三千万个点的树,需要处理一百万次查询:
给定a,b,询问a是否b的祖先。
解决思路:
查询的数量很大,必须在O(1)时间内回答每一次查询。参考LCA转化RMQ过程。
建立树,在遍历过程中记录所有第一次到达节点i的时间in[i],离开节点i的时间out[i]。然后看区间[ in[b], out[b] ]是否被 [in[a] ...
www.eeworm.com/read/304003/13804954
txt 非递归八皇后.txt
int x[9]={0};
int n=1;
int chk(int a, int b) /*检测(x,y)处的皇后是否与已有皇后冲突,同行、同斜线均为冲突。*/
{
int i;
if(a != 0)
{
for(i=1; i
www.eeworm.com/read/262523/11587174
cpp 背包问题(非递归).cpp
// 背包问题(非递归).cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
using namespace std;
//本程序是用来求多个解的,采用的就是简单的穷举方法。
int n=0;
void choose(int a,
www.eeworm.com/read/262523/11587175
opt 背包问题(非递归).opt
www.eeworm.com/read/262523/11587176
dsw 背包问题(非递归).dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/262523/11587177
plg 背包问题(非递归).plg
Build Log
--------------------Configuration: 背包问题(非递归) - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\Own
www.eeworm.com/read/262523/11587179
dsp 背包问题(非递归).dsp
# Microsoft Developer Studio Project File - Name="背包问题(非递归)" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/262523/11587181
ncb 背包问题(非递归).ncb
www.eeworm.com/read/157008/11744933