473,395 Members | 1,574 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

java to c++?

i have written code in java, how would it look in c++?

int amtOfLetters = currInput.length;
HashMap letters = new HashMap(amtOfLetters);
for(int currCharPos = 0; currCharPos < amtOfLetters; currCharPos++) {
if (letters.get(currInput[currCharPos]) == null) {//doesn't exist yet
letters.put(currInput[currCharPos], 1)
} else {//if it is already there
letters.put(currInput[currCharPos],
letters.get(currInput[currCharPos]) + 1)

thank you.

Oct 3 '07 #1
2 1332
On 2007-10-03 16:40, Sn*******@gmail.com wrote:
i have written code in java, how would it look in c++?

int amtOfLetters = currInput.length;
Is currInput some kind of array of characters?
HashMap letters = new HashMap(amtOfLetters);
Is using a hashmap necessary, would a normal map work just as well?
for(int currCharPos = 0; currCharPos < amtOfLetters; currCharPos++) {
if (letters.get(currInput[currCharPos]) == null) {//doesn't exist yet
letters.put(currInput[currCharPos], 1)
} else {//if it is already there
letters.put(currInput[currCharPos],
letters.get(currInput[currCharPos]) + 1)
If the answers to both questions above are yes, then the following
should do:

std::vector<charcurrInput;
// --Add letters to currInput here <--

std::map<char, size_tletters; // The map

for (size_t i = 0; i < currInput.size(); ++i)
{
++letters[currInput[i]];
}

--
Erik Wikström
Oct 3 '07 #2
In article <11*********************@g4g2000hsf.googlegroups.c om>,
Sn*******@gmail.com says...
i have written code in java, how would it look in c++?

int amtOfLetters = currInput.length;
HashMap letters = new HashMap(amtOfLetters);
for(int currCharPos = 0; currCharPos < amtOfLetters; currCharPos++) {
if (letters.get(currInput[currCharPos]) == null) {//doesn't exist yet
letters.put(currInput[currCharPos], 1)
} else {//if it is already there
letters.put(currInput[currCharPos],
letters.get(currInput[currCharPos]) + 1)
If you really wanted to, you could probably get that code to compile as
C++, so it'd like precisely identical. Then again, you probably don't
really want that.

The obvious version in C++ would be something like:

std::map<char, intletters;

for (int i=0; i<currInput.length(); ++i)
++letters[currInput[i]];

OTOH, since you're apparently only using char as the index, you can
pretty easily use a vector instead:

std::vector<intletters(UCHAR_MAX, 0);

for (int i=0; i<currInput.length(); ++i)
++letters[(unsigned char)currInput[i]];

IIRC, in Java the char type is really 16 bits, but unless you're really
short of memory, using something like 256K for the array is often
reasonable, using extra memory to improve speed. If you want to support
a really complete character set, chances are that an array won't be very
practical though.

--
Later,
Jerry.

The universe is a figment of its own imagination.
Oct 4 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ravi Tallury | last post by:
Hi We are having issues with our application, certain portions of it stop responding while the rest of the application is fine. I am attaching the Java Core dump. If someone can let me know what...
1
by: ptaz | last post by:
Hi I'm trying to run a web page but I get the following error. Ca anyone please tell me a solution to this. Thanks Ptaz HTTP Status 500 - type Exception report
11
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in...
0
by: mailkhurana | last post by:
Hii , I am trying to use a type 2 driver to connect to DB2 0n AIX 5 I have a small java test to class to establish a conneciton with the db .. I am NOT using WAS or any appserver When I try to...
1
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej...
12
by: Mark Fink | last post by:
I wrote a Jython class that inherits from a Java class and (thats the plan) overrides one method. Everything should stay the same. If I run this nothing happens whereas if I run the Java class it...
0
by: jaywak | last post by:
Just tried running some code on Linux (2.4.21-32.0.1.EL and Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)) and Windows XPSP2 (with Java HotSpot(TM) Client VM (build...
1
by: jaimemartin | last post by:
hello, I want to validate an xml by means of a schema (xsd). To do that first of all I´m using a SchemaFactory. The problem is that if I run the code in Windows all works fine, but If I run it in...
0
oll3i
by: oll3i | last post by:
package library.common; import java.sql.ResultSet; public interface LibraryInterface { public ResultSet getBookByAuthor(String author); public ResultSet getBookByName(String name);
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.