There are a handful of well-known methods for designing the structure of software. A popular one recently has been the Model-View-Controller (known as MVC). This is what Ruby on Rails and most web frameworks use as their architecture. I don't mean that the web frameworks themselves are MVC (although they could be) but that they help users of those frameworks build software with the MVC architecture. You could find an open-source MVC app and look at the models first, to get a sense of the data involved and how it's accessed. Then look at the controllers to see how data goes from the user, to the models, and back to the user.
Of course, MVC isn't the only way to structure code, or even the most popular (I'm guessing). From what I've heard from programmer friends, and my limited experience looking at open source code bases (Vim and GNU coreutils), a lot of popular open-source software doesn't have a clear architecture or design. A lot of software has just been added to over many years, by many different developers, and can just kinda be a big blob of code. I just read a blog post about how messy the code base is for LaTeX, and how that's stopping it from being ported to iOS.
To answer your question more directly, there's not really a common way for source to be organized, and in most cases, it's not organized very well at all. As a younger programmer myself (< 2 years out of college) I've also recently struggled with how to organize code. I would recommend you write a large application, from scratch. How large? Large enough so that you can't keep it all in your head at one time. At my first job, it was at about exactly 3000 lines that I really started to appreciate the good decisions I made in structuring my code. I also noticed the bad decisions and the details I thought were unimportant or were unaware of started becoming bigger problems. Writing your own large project will teach you many (but not all) important aspects of organizing source code.
If you're looking to specifically understand a popular open-source code base, I would agree with Saif and suggest you start at high level documentation, and dive into the source only when you have a feel for how the code hangs together.