Skip to content

mwagner86/CPP_08

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CPP_08

C++ Templated containers, iterators, algorithms

Exercise 00:

Easy find

A first easy exercise is the way to start off on the right foot.

Write a function template easyfind that accepts a type T. It takes two parameters. The first one has type T and the second one is an integer.

Exercise 01:

Span

Develop a Span class that can store a maximum of N integers. N is an unsigned int variable and will be the only parameter passed to the constructor.

Exercise 02:

Mutated abomination

Now, time to move on more serious things. Let’s develop something weird.