Connecting Tech Pros Worldwide Help | Site Map

Can C++ do this?

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 22nd, 2005, 04:37 PM
Gordon Ashford
Guest
 
Posts: n/a
Default Can C++ do this?

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, 04:37 PM
Gernot Frisch
Guest
 
Posts: n/a
Default 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, 04:37 PM
John Harrison
Guest
 
Posts: n/a
Default 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, 04:38 PM
lallous
Guest
 
Posts: n/a
Default 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, 04:38 PM
Ioannis Vranos
Guest
 
Posts: n/a
Default 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, 04:38 PM
Ioannis Vranos
Guest
 
Posts: n/a
Default 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, 04:38 PM
Jimmy_B
Guest
 
Posts: n/a
Default 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, 04:38 PM
Gordon Ashford
Guest
 
Posts: n/a
Default 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, 04:38 PM
Christopher Benson-Manica
Guest
 
Posts: n/a
Default 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.
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.