コード例 #1
0
ファイル: estreams.cpp プロジェクト: calref/cboe
	std::string find(long long val, std::string def = "") const {
		std::string result;
		if(root.find(val,result)) {
			return std::string(result.rbegin(), result.rend());
		}
		return def;
	}
コード例 #2
0
ファイル: main.cpp プロジェクト: contacoonta/sgap-ccpp
	// 재귀호출 ( Recursive call ) 찾기
	node* find(UINT key)
	{
		// 구조체의 키와 찾으려는 키가 같다면,
		// this , 현재 구조체 자체의 주소
		if (ukey == key) return this;			

		// 현재 노드가 꼬리라면,
		if (pnext == nullptr) return nullptr;

		pnext->find(key);
	}