• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 23:08
CEST 05:08
KST 12:08
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL21] Ro24 Preview Pt2: News Flash10[ASL21] Ro24 Preview Pt1: New Chaos0Team Liquid Map Contest #22 - Presented by Monster Energy18ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book20
Community News
[BSL22] RO32 Group Stage1Weekly Cups (March 23-29): herO takes triple6Aligulac acquired by REPLAYMAN.com/Stego Research8Weekly Cups (March 16-22): herO doubles, Cure surprises3Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool51
StarCraft 2
General
Rongyi Cup S3 - Preview & Info Team Liquid Map Contest #22 - Presented by Monster Energy Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool What mix of new & old maps do you want in the next ladder pool? (SC2) Aligulac acquired by REPLAYMAN.com/Stego Research
Tourneys
RSL Season 4 announced for March-April Sparkling Tuna Cup - Weekly Open Tournament StarCraft Evolution League (SC Evo Biweekly) WardiTV Mondays World University TeamLeague (500$+) | Signups Open
Strategy
Custom Maps
[M] (2) Frigid Storage Publishing has been re-enabled! [Feb 24th 2026]
External Content
The PondCast: SC2 News & Results Mutation # 520 Moving Fees Mutation # 519 Inner Power Mutation # 518 Radiation Zone
Brood War
General
ASL21 General Discussion [BSL22] RO32 Group Stage so ive been playing broodwar for a week straight. Gypsy to Korea Pros React To: JaeDong vs Queen
Tourneys
[ASL21] Ro24 Group F Escore Tournament StarCraft Season 2 [Megathread] Daily Proleagues [ASL21] Ro24 Group E
Strategy
What's the deal with APM & what's its true value Fighting Spirit mining rates Simple Questions, Simple Answers
Other Games
General Games
Stormgate/Frost Giant Megathread Starcraft Tabletop Miniature Game Nintendo Switch Thread General RTS Discussion Thread Darkest Dungeon
Dota 2
The Story of Wings Gaming Official 'what is Dota anymore' discussion
League of Legends
G2 just beat GenG in First stand
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread Five o'clock TL Mafia
Community
General
US Politics Mega-thread The Chess Thread Russo-Ukrainian War Thread NASA and the Private Sector Things Aren’t Peaceful in Palestine
Fan Clubs
The IdrA Fan Club
Media & Entertainment
[Manga] One Piece [Req][Books] Good Fantasy/SciFi books Movie Discussion!
Sports
2024 - 2026 Football Thread Formula 1 Discussion Cricket [SPORT] Tokyo Olympics 2021 Thread General nutrition recommendations
World Cup 2022
Tech Support
[G] How to Block Livestream Ads
TL Community
The Automated Ban List
Blogs
Broowar part 2
qwaykee
China Uses Video Games to Sh…
TrAiDoS
Funny Nicknames
LUCKY_NOOB
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
ASL S21 English Commentary…
namkraft
Electronics
mantequilla
Customize Sidebar...

Website Feedback

Closed Threads



Active: 11385 users

The Big Programming Thread - Page 353

Forum Index > General Forum
Post a Reply
Prev 1 351 352 353 354 355 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Millitron
Profile Blog Joined August 2010
United States2611 Posts
September 15 2013 19:05 GMT
#7041
On September 16 2013 03:39 darkness wrote:
I've been wondering how one can keep record of unlimited number of users in a struct way fashion in Java.

For example,


class Person {
private String name;
private String surname;
private int age;

Person(String name, String surname, int age) {
this.name = name;
this.surname = surname;
this.age = age;
}

// some getter methods
public int getAge() {
return age;
}

// etc... and setter methods too
public void setAge(int age) {
this.age = age;
}
}


I know I can have a single record by having:

Person bill = new Person("Bill", "Gates", 57);

How can I have an unlimited number of people though? Is it possible without creating individual objects manually?

Its absolutely possible, how do you think Starcraft handles training troops?

The following code assumes there's some other code generating names and ages:

Person list[] = new Person[n]
for (int i = 0; i < n; i++)
{
Person temp = new Person(generateFirstName(), generateLastName(), generateAge());
list[i] = temp;
}


This code gives you an array "list" containing n Persons. As you can see, none of them are manually created.
Who called in the fleet?
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-09-15 19:19:11
September 15 2013 19:18 GMT
#7042
Awesome. Thank you! I have additional questions if you don't mind. Is ArrayList the way to go in this case? If there's frequent insert/remove, is LinkedList better? How can I use one if needed?

Maybe like this?

Person list[] = new LinkedList();


Or is that not valid?

Thanks!
sur_reaL
Profile Joined April 2010
Canada278 Posts
Last Edited: 2013-09-15 19:34:16
September 15 2013 19:25 GMT
#7043
Yeah ArrayList is the way to go since you want "unlimited" and not up to "n" elements using just an array.

For example:
List<Person> myList = new ArrayList<Person>();


Runtime Analysis
http://www.youtube.com/watch?v=lH3hrtp1T84
lolmlg
Profile Joined November 2011
619 Posts
September 15 2013 19:27 GMT
#7044
On September 16 2013 04:18 darkness wrote:
If there's frequent insert/remove, is LinkedList better?

What other operations do you expect to be performed "frequently"? Search? Sorting?
Nerv3
Profile Joined March 2011
Germany36 Posts
Last Edited: 2013-09-15 19:30:37
September 15 2013 19:29 GMT
#7045
The advantage of ArrayList is that you can get an element in O(1), while with a Linked List you need O(n) time. However deleting an element while iterating the list only needs O(1) for a Linked List but O(n) for an Array List.

Both lists are "unlimited" as far as memory goes.
More gg more skill :)
Sluggy
Profile Joined June 2010
United States128 Posts
September 15 2013 19:38 GMT
#7046
On September 16 2013 04:18 darkness wrote:
Awesome. Thank you! I have additional questions if you don't mind. Is ArrayList the way to go in this case? If there's frequent insert/remove, is LinkedList better? How can I use one if needed?

Maybe like this?

Person list[] = new LinkedList();


Or is that not valid?

Thanks!


Similar to the post above me, you're going to want to do something like

List<Person> = new LinkedList<Person>()

I'm not sure about the standard java generic library but that is the general idea
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
Last Edited: 2013-09-15 20:03:11
September 15 2013 20:00 GMT
#7047
On September 16 2013 04:18 darkness wrote:
Awesome. Thank you! I have additional questions if you don't mind. Is ArrayList the way to go in this case? If there's frequent insert/remove, is LinkedList better? How can I use one if needed?

Maybe like this?

Person list[] = new LinkedList();


Or is that not valid?

Thanks!


Usually the best way to store a potentially unlimited amount of data is a database, but if you need it in the code, there is a lot to think about when choosing the correct data type to store it in.

The easiest are arrays, which have the advantage that you can instantly access any element as long as you know the index. However, they are slow when inserting/deleting elements somewhere in the middle as every element after the inserted/deleted element has to be moved (which happens behind the scenes but still consumes time). They also are relatively slow if you want to search for a specific element since you have to move through each element until you find the one you search for. This can be compensated for by using a sorted list, which speeds up searching but requires the overhead of keeping the array sorted after every change of data. They are the fastest choice if you always have the index to the elements you are looking and when the dataset stays mostly constant and any inserts/deletes are usually near the end of the array.

Another option are linked lists, which have the advantage that inserting/deleting is very fast. However, accessing a specific element always requires searching through all of them to find it, you can't access it directly. Like normal arrays, searching for a specific element also takes time as you need to search through all of them and keeping a sorted list does not speed up searching since you can't look ahead, you have to move through every single element to find the element after it. They are the fastest choice if you insert/delete a lot but don't often search for elements.

A third option are hashmaps/associative arrays, which allow quick access to any element according to the chosen keys and depending on the implementation usually have an insert/delete time close to that of a linked list. Performance wise they are roughly half way between arrays and linked lists in most situations with the advantage that you can search elements very fast if you chose the right keys. A disadvantage is that the order of elements is not guaranteed, so if you just iterate through the data, you might get it in a different order than you created it in. They are good choices if you know what you are usually searching for, e.g. in your case it might be a Lastname + Firstname key which allows you to find a user very fast if you have his name. They are not a good choice if you need your data in a specific order.

The best pick always depends on the use-case and it's impossible to say "X is always better than Y".
artynko
Profile Joined November 2010
Slovakia86 Posts
Last Edited: 2013-09-15 20:06:49
September 15 2013 20:04 GMT
#7048
However in general unless you are trying to launch a rocket into space it is not a good practice to obsess about optimalization so early into development, it is nice to pick a correct list implementation but in the end, the time you can save by having O(1) somewhere instead of Log(n) is usually negligible compared to the access times that will be created by network or database.
Far more important then picking a correct implementation is having a good architecture that can scale easily.
Manit0u
Profile Blog Joined August 2004
Poland17713 Posts
Last Edited: 2013-09-15 20:15:13
September 15 2013 20:14 GMT
#7049
You should really read some on mappings (associative array data structures). This way you can not only have nice arrays for multiple things but also store and access data in a much more coherent way. Also, getter and setter methods are bad and should be avoided, more on that here: http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-toolbox.html (there's also a link explaining why "extends" is evil).
Time is precious. Waste it wisely.
Holy_AT
Profile Joined July 2010
Austria978 Posts
September 15 2013 20:28 GMT
#7050
On September 16 2013 03:39 darkness wrote:
I've been wondering how one can keep record of unlimited number of users in a struct way fashion in Java.

For example,


class Person {
private String name;
private String surname;
private int age;

Person(String name, String surname, int age) {
this.name = name;
this.surname = surname;
this.age = age;
}

// some getter methods
public int getAge() {
return age;
}

// etc... and setter methods too
public void setAge(int age) {
this.age = age;
}
}


I know I can have a single record by having:

Person bill = new Person("Bill", "Gates", 57);

How can I have an unlimited number of people though? Is it possible without creating individual objects manually?


You seem to be missing several basics in object oriented programming if you do not know that you can simply use Lists of objects or arrays of objects.
There are several good basic guides for starting java and c# programmers that would be really useful to you. I suggest you use google or maybe someone can recommend you a good guide he/she him/herself used.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
September 15 2013 20:35 GMT
#7051
On September 16 2013 05:28 Holy_AT wrote:
Show nested quote +
On September 16 2013 03:39 darkness wrote:
I've been wondering how one can keep record of unlimited number of users in a struct way fashion in Java.

For example,


class Person {
private String name;
private String surname;
private int age;

Person(String name, String surname, int age) {
this.name = name;
this.surname = surname;
this.age = age;
}

// some getter methods
public int getAge() {
return age;
}

// etc... and setter methods too
public void setAge(int age) {
this.age = age;
}
}


I know I can have a single record by having:

Person bill = new Person("Bill", "Gates", 57);

How can I have an unlimited number of people though? Is it possible without creating individual objects manually?


You seem to be missing several basics in object oriented programming if you do not know that you can simply use Lists of objects or arrays of objects.
There are several good basic guides for starting java and c# programmers that would be really useful to you. I suggest you use google or maybe someone can recommend you a good guide he/she him/herself used.


Yeah, it didn't come to my mind that collections and data structures are built as generic. Then again, I have no experience (or should I say, I didn't have to do it until now), so yeah.. I'm still learning.

I'm definitely up for some revision of my OOP understanding.

If the 'Java, Java, Java' book is ok, then I can have a look at it tomorrow.

Book: http://books.google.bg/books/about/Java_Java_Java.html?id=k_a0pVRrFVkC&redir_esc=y
Manit0u
Profile Blog Joined August 2004
Poland17713 Posts
September 15 2013 20:37 GMT
#7052
On September 16 2013 05:28 Holy_AT wrote:
Show nested quote +
On September 16 2013 03:39 darkness wrote:
I've been wondering how one can keep record of unlimited number of users in a struct way fashion in Java.

For example,


class Person {
private String name;
private String surname;
private int age;

Person(String name, String surname, int age) {
this.name = name;
this.surname = surname;
this.age = age;
}

// some getter methods
public int getAge() {
return age;
}

// etc... and setter methods too
public void setAge(int age) {
this.age = age;
}
}


I know I can have a single record by having:

Person bill = new Person("Bill", "Gates", 57);

How can I have an unlimited number of people though? Is it possible without creating individual objects manually?


You seem to be missing several basics in object oriented programming if you do not know that you can simply use Lists of objects or arrays of objects.
There are several good basic guides for starting java and c# programmers that would be really useful to you. I suggest you use google or maybe someone can recommend you a good guide he/she him/herself used.


I'd suggest Symphony in C++ standard by Jerzy Grebosz (if it's available in English) and Code Complete, 2nd edition by Steve McConnell. This 2 books have truly opened my eyes.
Time is precious. Waste it wisely.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2013-09-15 21:10:20
September 15 2013 21:05 GMT
#7053
Honestly, there are a lot of decent books for your purposes, just pick whatever you have available. Regardless of which source you go for, remain critical. Books aren't full of absolute undeniable truth. Sometimes they are partially outdated, sometimes they advocate debatable things more than appropriate. Books are written by humans after all.

There mainly are two things you are looking for in books:
- what you can do
- what you should or should not do

The latter is where you should be most careful. Words like "never" or "always" should ring alarm bells: Absolutes usually are out of place in the "what you should do" department.

By the way, is "Code Complete" the book where the author says about checked exceptions that "the discussion is over"? Because that sure is a debatable statement (even though there are no satisfying implementations of the concept in popular languages).
If you have a good reason to disagree with the above, please tell me. Thank you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-09-15 22:02:11
September 15 2013 21:58 GMT
#7054
On September 16 2013 06:05 spinesheath wrote:
Honestly, there are a lot of decent books for your purposes, just pick whatever you have available. Regardless of which source you go for, remain critical. Books aren't full of absolute undeniable truth. Sometimes they are partially outdated, sometimes they advocate debatable things more than appropriate. Books are written by humans after all.

There mainly are two things you are looking for in books:
- what you can do
- what you should or should not do

The latter is where you should be most careful. Words like "never" or "always" should ring alarm bells: Absolutes usually are out of place in the "what you should do" department.

By the way, is "Code Complete" the book where the author says about checked exceptions that "the discussion is over"? Because that sure is a debatable statement (even though there are no satisfying implementations of the concept in popular languages).


To add to your criticism about books, 'Java, Java, Java' suggests ignoring the 0 index of arrays for the sake of readability. I've done this on my own in year 1 at university, and I got marked down for it. I didn't follow this book's advice back then. Feedback was like "do not waste memory" or something.

In other words, you only use the range from index[1] to index[n].

I mean this edition: http://archive.org/details/JavaJavaJavaObject-orientedProblemSolving

PDF, Page: 449/865
Nerv3
Profile Joined March 2011
Germany36 Posts
September 15 2013 22:19 GMT
#7055
Actually arrays in the Starcraft 2 Editor are one larger than you declare them. :D
More gg more skill :)
Manit0u
Profile Blog Joined August 2004
Poland17713 Posts
Last Edited: 2013-09-15 22:39:49
September 15 2013 22:39 GMT
#7056
On September 16 2013 06:58 darkness wrote:
Show nested quote +
On September 16 2013 06:05 spinesheath wrote:
Honestly, there are a lot of decent books for your purposes, just pick whatever you have available. Regardless of which source you go for, remain critical. Books aren't full of absolute undeniable truth. Sometimes they are partially outdated, sometimes they advocate debatable things more than appropriate. Books are written by humans after all.

There mainly are two things you are looking for in books:
- what you can do
- what you should or should not do

The latter is where you should be most careful. Words like "never" or "always" should ring alarm bells: Absolutes usually are out of place in the "what you should do" department.

By the way, is "Code Complete" the book where the author says about checked exceptions that "the discussion is over"? Because that sure is a debatable statement (even though there are no satisfying implementations of the concept in popular languages).


To add to your criticism about books, 'Java, Java, Java' suggests ignoring the 0 index of arrays for the sake of readability. I've done this on my own in year 1 at university, and I got marked down for it. I didn't follow this book's advice back then. Feedback was like "do not waste memory" or something.

In other words, you only use the range from index[1] to index[n].

I mean this edition: http://archive.org/details/JavaJavaJavaObject-orientedProblemSolving

PDF, Page: 449/865


Why would you ignore index[0]? You should always be counting from 0, not 1... It's actually worse for readability if you start with 1 all the time because people who are accustomed to 0 being the beginning of the array (99.9% of coders I believe) will be confused and are going to waste time by checking all the code to see what you use index[0] for (and not finding it).

Personally, I'd be baffled if I came across such a solution.
Time is precious. Waste it wisely.
DeltaX
Profile Joined August 2011
United States287 Posts
Last Edited: 2013-09-15 22:52:32
September 15 2013 22:50 GMT
#7057
Another downside is that by ignoring the first index, you can get some odd behavior if you try to access the array with an iterator instead of a standard for loop. (for (int myInt : myArray) vs for(int i = 1; i < myArray.length + 1; i++) ) For example, an array of ints initilizes with all values as zero (it seems), so if you then iterate over them, but never did anything with the first index, you will have n+1 elements instead of n, plus an extra 0.

You will also confuse people quite a lot. Sometimes you just do things not because one way is better than the other, but just because that is the way everyone will expect it to work, and may not notice you did it differently, causing problems.
Yoshi-
Profile Joined October 2008
Germany10227 Posts
September 15 2013 22:53 GMT
#7058
Also if you want to initialize an array of size 5 you need to do sth like this
int array[5+1];

Which doesn't make any sense at all
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2013-09-15 22:59:58
September 15 2013 22:59 GMT
#7059
Well, I didn't think much like a programmer in year 1. index[1] is more natural to humans than index[0] imho, so my approach was like that back then. I don't do it anymore though. It happened only once anyway.

I am surprised that a book recommended by universities suggests ignoring the 0 index.
Cyx.
Profile Joined November 2010
Canada806 Posts
September 15 2013 23:25 GMT
#7060
On September 16 2013 07:59 darkness wrote:
Well, I didn't think much like a programmer in year 1. index[1] is more natural to humans than index[0] imho, so my approach was like that back then. I don't do it anymore though. It happened only once anyway.

I am surprised that a book recommended by universities suggests ignoring the 0 index.


Lua (which was originally designed for non-programmers) starts its string indices at 1 for this exact reason ^^ I was so confused when I started learning Lua but you get used to it pretty quickly, and it IS way more natural. I totally agree with the design decision from the people who designed Lua that way.

That being said, it still confuses the shit out of people who've been learning it with 0 all the time - so while it is probably nicer and easier to pick up for someone who's never programmed before, it's not gonna fly in any workplace =P
Prev 1 351 352 353 354 355 1032 Next
Please log in or register to reply.
Live Events Refresh
CranKy Ducklings
00:00
TLMC #22: Map Judging #1
CranKy Ducklings62
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RuFF_SC2 233
ROOTCatZ 70
StarCraft: Brood War
GuemChi 5876
Sea 38
Noble 27
Dota 2
monkeys_forever926
NeuroSwarm166
League of Legends
JimRising 707
Counter-Strike
taco 637
C9.Mang0325
Super Smash Bros
hungrybox488
Mew2King64
Heroes of the Storm
Khaldor54
Other Games
summit1g10651
tarik_tv4349
Organizations
Other Games
gamesdonequick1137
BasetradeTV122
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• CranKy Ducklings SOOP5
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo563
• Stunt103
Other Games
• Scarra761
Upcoming Events
Sparkling Tuna Cup
6h 52m
PiGosaur Cup
20h 52m
Replay Cast
1d 5h
Kung Fu Cup
1d 8h
Replay Cast
1d 20h
The PondCast
2 days
CranKy Ducklings
2 days
WardiTV Team League
3 days
Replay Cast
3 days
CranKy Ducklings
4 days
[ Show More ]
WardiTV Team League
4 days
uThermal 2v2 Circuit
4 days
BSL
4 days
Sparkling Tuna Cup
5 days
WardiTV Team League
5 days
BSL
5 days
Replay Cast
5 days
Replay Cast
6 days
Wardi Open
6 days
Liquipedia Results

Completed

CSL Elite League 2026
RSL Revival: Season 4
NationLESS Cup

Ongoing

BSL Season 22
ASL Season 21
CSL 2026 SPRING (S20)
StarCraft2 Community Team League 2026 Spring
Nations Cup 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026

Upcoming

Escore Tournament S2: W2
IPSL Spring 2026
Escore Tournament S2: W3
Acropolis #4
BSL 22 Non-Korean Championship
CSLAN 4
Kung Fu Cup 2026 Grand Finals
HSC XXIX
uThermal 2v2 2026 Main Event
uThermal 2v2 Last Chance Qualifiers 2026
RSL Revival: Season 5
IEM Cologne Major 2026
Stake Ranked Episode 2
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.