Originally posted by: mchammer187
Originally posted by: Deeko
Oh man its done...its a lot easier when you know how to make your algorithms Three hours this time...as opposed to 4 days the first time.
they come in handy later on also i think i have used my linked list sorting code several times
and did a translation from C ++ to C and I even used that quite a few times
anyway save all your code i have tons of C, C++ and java code that is still very useful as a reference or that i can just steal
Originally posted by: SyahM
good job deeko! now finish up the program so you can get some sleep.
The school gives it to us.Don't use VC++. That's what you get for using a Microsoft product.
I hardly am going to make multiple backups every time I compile the program.Since this was an important file to you, you should have had multiple backups in multiple locations.
Messed up in what way?maybe vc++ crashed because the files were messed up?
Originally posted by: crazygal
Code Warrior auto saves it every time you compile, so I never had any problems like that.
FYI: all the data structures you're doing now are pointless, in the real world you just use pre-made ones. Not saying it to make you mad or anything but it's nice to know you don't have to do this every time you want to make a collection of information!
Originally posted by: Deeko
Originally posted by: FeathersMcGraw
I bet stuff like this doesn't happen to underqualified minority students.
STFU moron.
Originally posted by: Deeko
I think I'm going to kill myself.
I've been working on my final assignment for my C++ class all week. It is painfully long. I just finished all of the classes...finally. I spent the last 2 days debugging my file IO and functions for sorting linked lists. It was finally working...I went to compile...and BAM. VC++ crashes. I open it...it deleted the file that made up about 50% of the stuff I had done, and had all of the most complicated functions like the ones above.
I guess its out the window for me...
I've said it before...I guess I'll say it again.Originally posted by: bleeb
Originally posted by: Deeko
I think I'm going to kill myself.
I've been working on my final assignment for my C++ class all week. It is painfully long. I just finished all of the classes...finally. I spent the last 2 days debugging my file IO and functions for sorting linked lists. It was finally working...I went to compile...and BAM. VC++ crashes. I open it...it deleted the file that made up about 50% of the stuff I had done, and had all of the most complicated functions like the ones above.
I guess its out the window for me...
NUMBER 1 RULE: SAVE BEFORE YOU COMPILE!! ALTHOUGH COMPILING AUTOMATICALLY SHOULD SAVE, YOU CAN STILL HAVE A CRASH. Sorry to hear about this.
Yes, I can.Wow, you can be pretty mean when you're drunk. I was trying to be helpful, not condescending.
As far as my "gay" codewarrior, it's never just deleted a file at random either. So unless it's your OS's fault, then it was the compiler. Hence, codewarrior would be better (although I highly doubt serious programmers would ever use it, it's really nothing special).
The STL's stuff works fine and seeing as how you're not making a consumer ready product, I doubt efficiency is really a concern at all.
After you're done with your basic classes, you may be given the pleasure to code in Java. You can use the api which has everything you'd ever need, efficient and all.
Originally posted by: dighn
c++ is based on c. it's almost completely backward compatible with c (almost)
the biggest difference is that it has extra stuffed added like classes and a new standard library.
besides the added things there are still some more subtle differences like c++ treats types more strictly
even without knowing c you can learn c++
btw visual c++ is just a comipler/ide for c++