Tagged Questions

5
votes
7answers
285 views

How does a program look in memory?

How is a program (e.g. C or C++) arranged in computer memory? I kind of know a little about segments, variables etc, but basically I have no solid understanding of the entire structure. Since the …
40
votes
27answers
2k views

How do you find a needle in a haystack?

When implementing a needle search of a haystack in an object-oriented way, you essentially have three alternatives: 1. needle.find(haystack) 2. haystack.find(needle) 3. searcher.find(needle, …
-1
votes
4answers
122 views

any suggestion about my c++ project ? [closed]

I need to write a project using C++. And right now I am considering what program structure should i construct? just use MVC-Model-View-Controller to develop my program ? Or any people have better …