User profile: mtrenkmann

User info
User name:mtrenkmann
Email:martin.trenkmann@googlemail.com
Name:Martin Trenkmann
Bio:* B.Sc. in computer science
* Enthusiastic C++ and Ada programmer
* Key developer of www.netspeak.org
Statistical data
Gender:Male
Occupation:Student
Skills:C
C++
ADA
Java
SPARK
History
Joined:
Number of posts:22
Latest posts:

Finding Three Dimensional Force Vector
Are you asking for calculating a force vector or for some representation of that vector? The former ...

A sorted linked list
A linked list is not the right data structure for this. Consider to use [b]std::set[/b] or [b]std::...

Palindromes
[code]std::string s1 = "anna"; std::string s2 = reverse(s1); // needs to be implemented bool is_pali...

is this style ok ?
This is not the usual way implementing a copy constructor. This would be better: [code] KD_MESSAGE:...

Template sort being cast to const
This sounds really like a const-correctness problem. Is it possible that your [code]objs[/code] vari...