2013-02-09から1日間の記事一覧

Boost.Coroutine でフィボナッチ

リハビリがてら軽く書いてみました。 [ソース] #include <iostream> #include <boost/coroutine/all.hpp> template<typename C> void fibonacci(C& c){ typedef typename C::arg_type value_type; value_type first = 0; c(first); value_type second = 1; c(second); while( 1 ){ value_type third = first </typename></boost/coroutine/all.hpp></iostream>…