Connecting Tech Pros Worldwide Help | Site Map

Can C++ do this?

  #1  
Old July 22nd, 2005, 05:37 PM
Gordon Ashford
Guest
 
Posts: n/a
I am new to C++ and have started looking at some of the basic functionality.
My aim to to create a process which can take a file (in .txt, .csv format
etc) and run various analyses (including but not limited to Sorting,
Summarizing, Duplicates etc) creating new outputs along the way.

I am aiming to do this in a Windows enviroment but expect record counts that
will exceed the limitations of Excel.

Can something of this nature be written using C++.

Thanks

Gordon


  #2  
Old July 22nd, 2005, 05:37 PM
Gernot Frisch
Guest
 
Posts: n/a

re: Can C++ do this?



"Gordon Ashford" <gja@longhope.fsworld.co.uk> schrieb im Newsbeitrag
news:cdgbfq$cam$1@news7.svr.pol.co.uk...[color=blue]
> I am new to C++ and have started looking at some of the basic[/color]
functionality.[color=blue]
> My aim to to create a process which can take a file (in .txt, .csv[/color]
format[color=blue]
> etc) and run various analyses (including but not limited to Sorting,
> Summarizing, Duplicates etc) creating new outputs along the way.
>
> I am aiming to do this in a Windows enviroment but expect record[/color]
counts that[color=blue]
> will exceed the limitations of Excel.
>
> Can something of this nature be written using C++.
>
> Thanks
>
> Gordon[/color]

Yes.
-Gernot


  #3  
Old July 22nd, 2005, 05:37 PM
John Harrison
Guest
 
Posts: n/a

re: Can C++ do this?



"Gordon Ashford" <gja@longhope.fsworld.co.uk> wrote in message
news:cdgbfq$cam$1@news7.svr.pol.co.uk...[color=blue]
> I am new to C++ and have started looking at some of the basic[/color]
functionality.[color=blue]
> My aim to to create a process which can take a file (in .txt, .csv format
> etc) and run various analyses (including but not limited to Sorting,
> Summarizing, Duplicates etc) creating new outputs along the way.
>
> I am aiming to do this in a Windows enviroment but expect record counts[/color]
that[color=blue]
> will exceed the limitations of Excel.
>
> Can something of this nature be written using C++.
>[/color]

Yes. I would expect something of that nature to be programmable in pretty
much any language you cared to name. Just go for the one you are most
familiar with.

john


  #4  
Old July 22nd, 2005, 05:38 PM
lallous
Guest
 
Posts: n/a

re: Can C++ do this?


"Gordon Ashford" <gja@longhope.fsworld.co.uk> wrote in message
news:cdgbfq$cam$1@news7.svr.pol.co.uk...[color=blue]
> I am new to C++ and have started looking at some of the basic[/color]
functionality.[color=blue]
> My aim to to create a process which can take a file (in .txt, .csv format
> etc) and run various analyses (including but not limited to Sorting,
> Summarizing, Duplicates etc) creating new outputs along the way.
>
> I am aiming to do this in a Windows enviroment but expect record counts[/color]
that[color=blue]
> will exceed the limitations of Excel.
>
> Can something of this nature be written using C++.
>
> Thanks
>
> Gordon
>
>[/color]

Hello

C++'s std library provide you with a set of algorithms and file management
routines that will aid you in your task.
You can still do your task w/o using the std by only relying on the
functions that the OS exports to the programmer.

--
Elias


  #5  
Old July 22nd, 2005, 05:38 PM
Ioannis Vranos
Guest
 
Posts: n/a

re: Can C++ do this?


Gordon Ashford wrote:
[color=blue]
> I am new to C++ and have started looking at some of the basic functionality.
> My aim to to create a process which can take a file (in .txt, .csv format
> etc) and run various analyses (including but not limited to Sorting,
> Summarizing, Duplicates etc) creating new outputs along the way.
>
> I am aiming to do this in a Windows enviroment but expect record counts that
> will exceed the limitations of Excel.
>
> Can something of this nature be written using C++.[/color]



Of course, however for the above you would have to use some system
specific facilities, like .NET framework.






Regards,

Ioannis Vranos

http://www23.brinkster.com/noicys
  #6  
Old July 22nd, 2005, 05:38 PM
Ioannis Vranos
Guest
 
Posts: n/a

re: Can C++ do this?


Ioannis Vranos wrote:

[color=blue]
> Of course, however for the above you would have to use some system
> specific facilities, like .NET framework.[/color]


.... only if you will want to interact with Excel, or use multithreading etc.






Regards,

Ioannis Vranos

http://www23.brinkster.com/noicys
  #7  
Old July 22nd, 2005, 05:38 PM
Jimmy_B
Guest
 
Posts: n/a

re: Can C++ do this?


Gordon Ashford wrote:[color=blue]
> I am new to C++ and have started looking at some of the basic functionality.
> My aim to to create a process which can take a file (in .txt, .csv format
> etc) and run various analyses (including but not limited to Sorting,
> Summarizing, Duplicates etc) creating new outputs along the way.[/color]

The tasks you mention correspond to the Unix programs sort, cut, and uniq.
If your goal is simply to process the data, you would not do well with
C++ - there's a lot to learn before you consider doing complicated things.
But C++ is arguably the most powerful language there is, so it's important
to learn it if you want to do serious programming. (Even if you'll never
use C++ itself, you should learn it for the concepts.)
  #8  
Old July 22nd, 2005, 05:38 PM
Gordon Ashford
Guest
 
Posts: n/a

re: Can C++ do this?



"lallous" <lallous@lgwm.org> wrote in message
news:2m1rkhFg2i80U1@uni-berlin.de...[color=blue]
> "Gordon Ashford" <gja@longhope.fsworld.co.uk> wrote in message
> news:cdgbfq$cam$1@news7.svr.pol.co.uk...[color=green]
> > I am new to C++ and have started looking at some of the basic[/color]
> functionality.[color=green]
> > My aim to to create a process which can take a file (in .txt, .csv[/color][/color]
format[color=blue][color=green]
> > etc) and run various analyses (including but not limited to Sorting,
> > Summarizing, Duplicates etc) creating new outputs along the way.
> >
> > I am aiming to do this in a Windows enviroment but expect record counts[/color]
> that[color=green]
> > will exceed the limitations of Excel.
> >
> > Can something of this nature be written using C++.
> >
> > Thanks
> >
> > Gordon
> >
> >[/color]
>
> Hello
>
> C++'s std library provide you with a set of algorithms and file management
> routines that will aid you in your task.
> You can still do your task w/o using the std by only relying on the
> functions that the OS exports to the programmer.
>
> --
> Elias
>
>[/color]
Elias

thanks for this. Where can I find these algorithms etc to see what is
available.

Thanks

Gordon


  #9  
Old July 22nd, 2005, 05:38 PM
Christopher Benson-Manica
Guest
 
Posts: n/a

re: Can C++ do this?


Gordon Ashford <gja@longhope.fsworld.co.uk> spoke thus:
[color=blue]
> thanks for this. Where can I find these algorithms etc to see what is
> available.[/color]

Your friendly C++ reference will undoubtedly contain a wealth of
useful information. Hint: The header you want to look at is
<algorithm>.

--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cyberspace.org | don't, I need to know. Flames welcome.
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows authentication from SUSE 10.1? What module can do this? coolsti answers 4 March 12th, 2008 12:34 AM
what control can do this? iwdu15 answers 2 March 15th, 2006 10:35 PM
Perhaps Python can do this better ? news@absamail.co.za answers 0 January 9th, 2006 12:35 PM
Help please! Who can do this program? phil goddard answers 6 July 22nd, 2005 01:02 PM
Any way I can do this? Should I do this? Jeff Uchtman answers 20 July 19th, 2005 09:04 AM