Thread: need to help about programming methodology

  1. #1
    Registered User
    Join Date
    Oct 2008
    Posts
    61

    need to help about programming methodology

    i been searching around and still can't find my answer
    can anyone give me an example of a linked list data structure c++ methodology please?
    i can't get a grip on methodology parts..confusing to me.
    I can't get it where to start when starting to write those methodologies.

  2. #2
    Registered User jeffcobb's Avatar
    Join Date
    Dec 2009
    Location
    Henderson, NV
    Posts
    875
    Uh check out snippets.org or you could have Googled it and found the first hit: Creating Linked Lists in C++
    C/C++ Environment: GNU CC/Emacs
    Make system: CMake
    Debuggers: Valgrind/GDB

  3. #3
    Registered User
    Join Date
    Oct 2008
    Posts
    61
    well thanks.It's just that i am confused between methodology and algorithm..
    thanks for the link mate
    methodology and algorithm must be similar aren't they?

  4. #4
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,660
    Methodologies (like OO, Functional Decomposition)
    Software development methodology - Wikipedia, the free encyclopedia

    Algorithms (like searching and sorting), and data structures (arrays, lists)
    Dictionary of Algorithms and Data Structures
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  5. #5
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    It's just that i am confused between methodology and algorithm..
    thanks for the link mate
    methodology and algorithm must be similar aren't they?
    Well, a methodology is more a matter of how you go about doing things, in general, whereas an algorithm is a specific set of operations to complete a certain task. Generic programming techniques, for instance, are a form of methodology. Quicksort is an algorithm. Applying the former to the latter is a simple example of how the two interrelate.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Software methodology
    By ssharish2005 in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 03-27-2008, 11:54 AM
  2. Could you help to recognize this software methodology
    By jabka in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 01-26-2008, 10:30 AM