当前位置: 首页>>代码示例>>C++>>正文


C++ Proxy::getDepth方法代码示例

本文整理汇总了C++中Proxy::getDepth方法的典型用法代码示例。如果您正苦于以下问题:C++ Proxy::getDepth方法的具体用法?C++ Proxy::getDepth怎么用?C++ Proxy::getDepth使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Proxy的用法示例。


在下文中一共展示了Proxy::getDepth方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: newnode

int
BreadthFirstSearch(List<NodeType> &startstatelist, 
		BinaryTree_AVL<DataType> &startlist, 
		BinaryTree_AVL<DataType> &otherlist)
{
	int status;

	// track all states created
	BinaryTree_AVL<String> allstates;

	// create open priority queue
	List<Proxy<NodeType> > openpq;

	// copy list of start states
	int nodedepth = 1;
	ListIterator<NodeType> startstateIter(startstatelist);
	for ( ; !startstateIter.done(); startstateIter++)
	{
		// copy start state
		Proxy<NodeType> pstart(startstateIter());

		// set start node depth
		pstart->setDepth(nodedepth);

		// insert start state into open queue
		if ((status = openpq.insertAtEnd(pstart)) != OK)
		{
			ERRORD("insertAtFront() failed.", status, errno);
			return(status);
		}
	}

	// start search loop
	for (Proxy<NodeType> pnode; ! openpq.isEmpty(); )
	{
		// remove next node from priority open queue
		if ((status = openpq.removeAtFront(pnode)) != OK)
		{
			ERRORD("removeAtFront() failed.", status, errno);
			return(status);
		}

		// set current node depth
		nodedepth = pnode->getDepth();

		// check if we have a goal node or not
		status = pnode->isGoal(startlist, otherlist);
		switch (status)
		{
		case OK:
			break;

		case NOMATCH:
		case MAXDEPTHEXCEEDED:
			// no clauses were generated. skip further
			// processing of this node.
			continue;

		case VALID:
			// goal node, print solution
			PrintSolution(pnode);
			PrintRenameVariables(pnode);

			// check if more than one solutions is required
			solutionsfound += 1;
			statistics[SolutionsFound] += 1;
			totalstatistics[TotalSolutionsFound] += 1;
			if (solutionsfound >= solutionsrequired)
				return(VALID);
			continue;

		case MAXCLAUSEEXCEEDED:
			// check if any solutions were found
			if (solutionsfound > 0)
				return(VALID);
			else
				return(NOTPROVEN);

		default:
			// some type of error
			ERRORD("isGoal() failed.", status, errno);
			return(status);
		}

		// generate the children of the current node
		if ((status = pnode->expand(startlist, otherlist)) != OK)
		{
			ERRORD("expand() failed.", status, errno);
			return(status);
		}

		// set up links to parent and calculate the heuristic value
		ListIterator<Proxy<NodeType> > 
			childrenIter(*pnode->getChildren());
		for ( ; !childrenIter.done(); childrenIter++)
		{
			// pointer to child
			Proxy<NodeType> pchild(childrenIter());

			// set up link to parent
//.........这里部分代码省略.........
开发者ID:ombt,项目名称:ombt,代码行数:101,代码来源:search.cpp

示例2: if

int
updatepath(int &nodedepth, int &olddepth, Proxy<NodeType> &pnode,
		List<Proxy<NodeType> > &currentpath)
{
	int status;

	// get new node depth
	nodedepth = pnode->getDepth();

	// update path if reporting is on
	if (reporttype != ReportStack && reporttype != ReportBoth)
		return(OK);

	// update path in stack
	if (currentpath.isEmpty())
	{
		if ((status = currentpath.insertAtFront(pnode)) != OK)
		{
			ERRORD("insertAtFront() failed.", 
				status, errno);
			return(status);
		}
		olddepth = nodedepth;
	}
	else if (nodedepth <= olddepth)
	{
		int nodestopop = olddepth - nodedepth + 1;
		for (int inode = 1; inode <= nodestopop; inode++)
		{
			Proxy<NodeType> ppathnode;
			if ((status = currentpath.removeAtFront(
				ppathnode)) != OK)
			{
				ERRORD("removeAtFront() failed.", 
					status, errno);
				return(status);
			}
		}
		if ((status = currentpath.insertAtFront(pnode)) != OK)
		{
			ERRORD("insertAtFront() failed.", 
				status, errno);
			return(status);
		}
		olddepth = nodedepth;
	}
	else if (nodedepth > olddepth)
	{
		if ((status = currentpath.insertAtFront(pnode)) != OK)
		{
			ERRORD("insertAtFront() failed.", 
				status, errno);
			return(status);
		}
		olddepth = nodedepth;
	}
	else
	{
		MustBeTrue(0);
	}

	// all done
	return(OK);
}
开发者ID:ombt,项目名称:ombt,代码行数:64,代码来源:search.cpp


注:本文中的Proxy::getDepth方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。