• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:50
CEST 22:50
KST 05:50
  • 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
[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244ByuL, and the Limitations of Standard Play3
Community News
Stellar Fest TWO the Moon (Dec 16-20)8Weekly Cups (August 24-30): Patches' balance mod takes over2New 3v3 BGH Ladder (and more) on ShieldBattery!40Weekly Cups (August 17-23): Zerg dominate the week6Weekly Cups (August 10-16): SHIN doubles4
StarCraft 2
General
Weekly Cups (August 10-16): SHIN doubles Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game SC4ALL II: SC2 Player Announcement 6/8 - Maru Weekly Cups (August 24-30): Patches' balance mod takes over How would you feel about frequent/monthly balance patches for SC2?
Tourneys
2026 GSTL Announcement Stellar Fest TWO the Moon (Dec 16-20) PIG STY FESTIVAL 8.0! (13 - 23 August) Sparkling Tuna Cup - Weekly Open Tournament IntoTheTV X SOOP SC2 League : Weekly & Monthly
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This Mutation # 539 Thunder Dome
Brood War
General
ASL22 General Discussion [Personal Project Share] Terran Defense v0.60 XUN appreciation thread Which box art did your first copy of StarCraft 1 have? BW General Discussion
Tourneys
[Megathread] Daily Proleagues BSL LAN Party - Kraków 29-30 August - OPEN SIGNUPS [ASL22] Ro24 Group F Small VOD Thread 2.0
Strategy
Replay Review Process - What do you do? Game Theory for Starcraft Odyssey Mineral Stack Saturation Fighting Spirit mining rates
Other Games
General Games
General RTS Discussion Thread Stratus: Battle for the sky now on steam Early acc Nintendo Switch Thread Stormgate/Frost Giant Megathread Anyone here play Quakeworld back in the day?
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread European Politico-economics QA Mega-thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 NBA General Discussion
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
Regacy Esports: The Bh…
regacyesports
Violent Games and Crime Rate…
TrAiDoS
LOCKPICKING NOOB
LUCKY_NOOB
Cathedral Of CS And NY pizza a…
FuDDx
Please support my new stand…
Peanutsc
Customize Sidebar...

Website Feedback

Closed Threads



Active: 3781 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
Poland17837 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
Poland17837 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
Poland17837 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
RotterdaM Event
16:15
Rotti's PatchesSC Open #2
RotterdaM903
TKL 250
IndyStarCraft 234
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 903
TKL 250
IndyStarCraft 234
ZombieGrub40
StarCraft: Brood War
Shuttle 798
Horang2 199
Dewaltoss 112
Terrorterran 45
Dota 2
syndereN254
NeuroSwarm98
LuMiX1
League of Legends
Doublelift3280
JimRising 286
Counter-Strike
shoxiejesuss1779
Other Games
Grubby2130
fl0m1075
C9.Mang0245
ArmadaUGS105
KnowMe73
Chillindude20
kaitlyn0
Organizations
StarCraft 2
WardiTV757
Other Games
BasetradeTV27
[ Show 14 non-featured ]
StarCraft 2
• RyuSc2 11
• Adnapsc2 3
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• masondota21356
Other Games
• imaqtpie1194
• Scarra882
• Shiphtur185
Upcoming Events
Replay Cast
3h 10m
The PondCast
13h 10m
OSC
1d 1h
IntoTheTV X SOOP
1d 14h
CranKy Ducklings
2 days
Sparkling Tuna Cup
3 days
OSC
3 days
Shopify Rebellion Sundays
3 days
Mixu vs TBD
Spirit vs TBD
Clem vs TBD
Afreeca Starleague
4 days
Soma vs Shuttle
BeSt vs Rush
WardiTV Weekly
4 days
[ Show More ]
Afreeca Starleague
5 days
Leta vs ggaemo
Jaedong vs Queen
GSL
5 days
PiGosaur Cup
6 days
Kung Fu Cup
6 days
Liquipedia Results

Completed

KCM Special KOR vs CHN
PiG Sty Festival 8.0
Light Tournament 2026

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
RSL Revival: Season 6
Calamity Invitational
Big Dog Cup 2026 Div 1
BLAST Open Fall 2026
Esports World Cup 2026
Esports World Cup 2026: LCQ
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026
IEM Cologne Major 2026

Upcoming

Acropolis #5
Acropolis #5 - TRS
Escore Tournament S3: King of Kings
Blizzard Classic Cup 2026
Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 2026
FISSURE Playground #3
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.