Can I use any std: C++ or collection class like map or set or list?

I like to ignore a set of files in file system filter driver. Is there any way I can use the set or map ?

STL does not work in the kernel, mostly because C++ exceptions cannot be tolerated. You'll have to roll your own.