• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 01:08
CET 07:08
KST 15: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
RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13
Community News
Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge1[TLMC] Fall/Winter 2025 Ladder Map Rotation13Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge [TLMC] Fall/Winter 2025 Ladder Map Rotation Mech is the composition that needs teleportation t RSL Season 3 - RO16 Groups C & D Preview
Tourneys
2025 RSL Offline Finals Dates + Ticket Sales! $5,000+ WardiTV 2025 Championship RSL Revival: Season 3 Sparkling Tuna Cup - Weekly Open Tournament Constellation Cup - Main Event - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened
Brood War
General
FlaSh on: Biggest Problem With SnOw's Playstyle What happened to TvZ on Retro? BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review BW General Discussion
Tourneys
[BSL21] GosuLeague T1 Ro16 - Tue & Thu 22:00 CET [Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] RO32 Group D - Sunday 21:00 CET
Strategy
Current Meta How to stay on top of macro? PvZ map balance Simple Questions, Simple Answers
Other Games
General Games
Stormgate/Frost Giant Megathread Beyond All Reason Clair Obscur - Expedition 33 Should offensive tower rushing be viable in RTS games? Path of Exile
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
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
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread The Games Industry And ATVI Things Aren’t Peaceful in Palestine About SC2SEA.COM
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
Dyadica Gospel – a Pulp No…
Hildegard
Coffee x Performance in Espo…
TrAiDoS
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Reality "theory" prov…
perfectspheres
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2052 users

The Big Programming Thread - Page 150

Forum Index > General Forum
Post a Reply
Prev 1 148 149 150 151 152 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.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2012-07-10 01:35:11
July 10 2012 01:33 GMT
#2981
On July 09 2012 13:00 Azerbaijan wrote:
I'm working on learning C and I made this simple number guessing game. I'm curious about the length of what I wrote and if it actually needs to tbe this long. I'm sure theres a way to compress it, maybe with functions, but im not quite there yet. I do want to know if this looks ok as far as clarity and use of functions goes. I know that scanf() is not a good choice but I'm still working on figuring out getchar() as an alternative, it still seems really abstract to me, its mostly just that that data types of confusing I think. I did manage to use getchar() and putchar() to spit out the ascii value of a character for me. SO basically i'm still a total noob but I'm having fun.

You don't need to compress it; it looks fine.

What would be more important though is just learning about the different data types and control structures (loops, if statements, switch statements, functions). scanf is perfectly fine for gathering user input when you're just learning to code. getchar will simply retrieve the first letter in the input buffer, and it waits for something to be placed into the input buffer if it is empty (things are placed into the input buffer when enter is pressed in a console program). Since getchar returns a single character you can actually just create a loop with getchar to read all the characters in the input buffer until a newline character is reached -- this reads a line from the input buffer:


char i;
while(i = getchar( ); i != '\n'; i = getchar( )) // Read each character, stop when find '\n' newline
{
printf( "%c", i ); // print retrieved characters back to the user
}


The above code will read a single line of user input and then print the line back to the user.
MisterD
Profile Blog Joined June 2010
Germany1338 Posts
July 10 2012 01:34 GMT
#2982
On July 09 2012 16:53 Morfildur wrote:
Show nested quote +
On July 09 2012 16:22 opsayo wrote:
not a big fan of using ? for if statements

readability > conciseness imo :-)


If you add whitespace, that single line is a lot more readable than


if (guess < number) {
lowhigh_text = "low";
} else {
lowhigh_text = "high";
}


It always depends on how it's used. With the ternary ?: operator, it's clear that the variable gets assigned either value. In the if/else case you have to check each block to check if it's really the same variable that gets assigned.

While maintaining and repairing some of our legacy code, I got caught several times by code like:


if (a == b) {
temp = x;
} else {
tmp = y;
}




which is why you should use meaningful names, and not "temp" :D but yeah, the occasional ?: can replace a lot of other infrastructure code in some places.
Gold isn't everything in life... you need wood, too!
Ultraliskhero
Profile Joined April 2010
Canada249 Posts
July 17 2012 22:06 GMT
#2983
Hi guys, I have a question about my program in Python.

But first, can someone tell me how to make the block where I can post code properly? Like what tags I need to use? right now I don't even know how to indent, because extra spaces don't show up in my post, so I will not post any code for now.

I know C/C++ but I've just learned a bit of python(Very Noob) and I'm trying to create a tree in python.
It's not a binary tree or anything, and there is no order. Each treeNode simply has a list of treeNodes.

So first I create a treeNode object as the head, and it contains a list called "children". I have another list that contains three treeNodes(I will call them pNodes), and I used a for loop to add each of these three pNodes into the list called "children" that belongs to the treeNode that was created as the head.

I tried to debug my code with print statements and found that when I said:
treeNode.children.append(pNode)

treeNode.children[0] will be pNode, but for some reason, pNode.childen[0] also turned into pNode.
pNode.children is originally an empty list before the append, but for some reason a reference to itself was created.
Also, treeNode and pNode are definitely different objects.

Sorry I feel like my explanation is useless without posting the code, but does anyone have any guesses on what the problem may be?

The only language I know is C/C++ and it bugs me how python doesn't have pointers, I just don't know how anything works internally with python. Any help would be appreciated.

Thanks!
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2012-07-17 23:48:47
July 17 2012 23:46 GMT
#2984
Integer promotion is the number one cause of premature deaths in babies as young as –2147483647 years old.
Any sufficiently advanced technology is indistinguishable from magic
acidfreak
Profile Joined November 2010
Romania352 Posts
July 17 2012 23:49 GMT
#2985
On July 18 2012 08:46 RoyGBiv_13 wrote:
Integer promotion is the number one cause of premature deaths in babies as young as –2147483647.


But not 64bit integers!
You can't out-think the swarm, you can't out-maneuver the swarm, and you certainly can't break the morale of the swarm.
tec27
Profile Blog Joined June 2004
United States3702 Posts
July 18 2012 00:56 GMT
#2986
On July 18 2012 07:06 Ultraliskhero wrote:
Hi guys, I have a question about my program in Python.

But first, can someone tell me how to make the block where I can post code properly? Like what tags I need to use? right now I don't even know how to indent, because extra spaces don't show up in my post, so I will not post any code for now.

I know C/C++ but I've just learned a bit of python(Very Noob) and I'm trying to create a tree in python.
It's not a binary tree or anything, and there is no order. Each treeNode simply has a list of treeNodes.

So first I create a treeNode object as the head, and it contains a list called "children". I have another list that contains three treeNodes(I will call them pNodes), and I used a for loop to add each of these three pNodes into the list called "children" that belongs to the treeNode that was created as the head.

I tried to debug my code with print statements and found that when I said:
treeNode.children.append(pNode)

treeNode.children[0] will be pNode, but for some reason, pNode.childen[0] also turned into pNode.
pNode.children is originally an empty list before the append, but for some reason a reference to itself was created.
Also, treeNode and pNode are definitely different objects.

Sorry I feel like my explanation is useless without posting the code, but does anyone have any guesses on what the problem may be?

The only language I know is C/C++ and it bugs me how python doesn't have pointers, I just don't know how anything works internally with python. Any help would be appreciated.

Thanks!

Can't help you with your python, but to post code you can simply surround it with [ code][/code] tags. That will preserve spacing and use monospaced font
Can you jam with the console cowboys in cyberspace?
Ultraliskhero
Profile Joined April 2010
Canada249 Posts
July 19 2012 19:03 GMT
#2987
@tec27 Thanks man! Now I can post some code =D

Ok so I wrote a small python program that demonstrates my problem and was wondering if anyone here can explain to me what is happening in my program.


class testNode:
string = ""

children = []

def __init__(self, _string):
self.string = _string


firstNode = testNode("first")
secondNode = testNode("second")

treeHead = testNode("Head")
treeHead.children.append(firstNode)

print treeHead.children[0].string
print firstNode.children[0].string
print secondNode.children[0].string



So in the program above, I made my treeNode class, and created three objects. I then appended firstNode to treeHead's children list. In the subsequent three print statements. I expect the first one to print "first" because the firstNode was appended to treeHead's children. However, I expect the next two print statements to fail because the children list in firstNode and secondNode should be empty.

My problem is that this is not the case, and that the last two print statements both also prints "first". It seems to me that the list called children in my class was made virtual or something. Anyways can anyone explain to me this behaviour? I'm very noob with python, and only know C/C++

Thanks all!
supereddie
Profile Joined March 2011
Netherlands151 Posts
Last Edited: 2012-07-19 19:37:51
July 19 2012 19:37 GMT
#2988
http://docs.python.org/tutorial/classes.html

You've declared children (and string) as a class member, not an instance member like so:

class testNode:
def __init__(self, _string):
self.string = _string
self.children = []


"Do not try to make difficult things possible, but make simple things simple." - David Platt on Software Design
Ultraliskhero
Profile Joined April 2010
Canada249 Posts
July 20 2012 21:14 GMT
#2989
@supereddie

Thanks man! My program works now. This python syntax looks so weird to me, at a glance it looks like the class has only a constructor and no data members lol.
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
July 20 2012 21:26 GMT
#2990
On July 21 2012 06:14 Ultraliskhero wrote:
@supereddie

Thanks man! My program works now. This python syntax looks so weird to me, at a glance it looks like the class has only a constructor and no data members lol.

That sort of is true, the instance of the class has data members, but the class itself only has a constructor method.
heroyi
Profile Blog Joined March 2009
United States1064 Posts
July 23 2012 21:21 GMT
#2991
I want to get into doing open source projects but can't seem to figure my way around. How does one begin working on an open source project (debugging and patches)? Do you just try to create a project on your own? How do you join/find a project before it begins? Do you need a certain level of expertise to start on one(I am personally a noob at c++)?

I am sorry if I seem ignorant. It seems like an overwhelming topic and I was unlucky to find only vague answers on google :/

tl;dr
I am interested in getting experience in opensource projects for experience and building my portfolio however I am still a "nub" in the programming community in c++. Have explored the concept/topic but still unsure and overwhelmed by the degree of knowledge it seems to require to start debugging/patching/working on an opensource...How do I get rid of that feeling of fear and being useless(I wouldn't even know how to find bugs let alone fix them)?
wat wat in my pants
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
Last Edited: 2012-07-23 21:43:45
July 23 2012 21:43 GMT
#2992
On July 24 2012 06:21 heroyi wrote:
I want to get into doing open source projects but can't seem to figure my way around. How does one begin working on an open source project (debugging and patches)? Do you just try to create a project on your own? How do you join/find a project before it begins? Do you need a certain level of expertise to start on one(I am personally a noob at c++)?

I am sorry if I seem ignorant. It seems like an overwhelming topic and I was unlucky to find only vague answers on google :/

tl;dr
I am interested in getting experience in opensource projects for experience and building my portfolio however I am still a "nub" in the programming community in c++. Have explored the concept/topic but still unsure and overwhelmed by the degree of knowledge it seems to require to start debugging/patching/working on an opensource...How do I get rid of that feeling of fear and being useless(I wouldn't even know how to find bugs let alone fix them)?

I'd say you should just do you own small projects, create tools and various applications to do different things. If you want to help work on Mozilla or something I'd feel you'd need a lot more depth in your programming skillset. You can then release the things you write as open source. That's what I'm doing
snively
Profile Blog Joined August 2011
United States1159 Posts
July 24 2012 20:20 GMT
#2993
lets say i have an integer that stores one of 4 flags. depending on the flag, i want my code to perform 4 different actions

whats the difference between using a switch and an if else if ladder?
is one of them better to use than the other?

thanks in advance.
My religion is Starcraft
Denar
Profile Blog Joined March 2011
France1633 Posts
July 24 2012 20:47 GMT
#2994
On July 25 2012 05:20 snively wrote:
lets say i have an integer that stores one of 4 flags. depending on the flag, i want my code to perform 4 different actions

whats the difference between using a switch and an if else if ladder?
is one of them better to use than the other?

thanks in advance.


It will depend on your language and your compiler, but I guess you ask this in terms of performance ? (Because apart from that, they both behave in the same way).

A switch statement can be optimized by your compiler into a jump table, which turns it into a single compare and a jump (in Assembly), instead of all the successive comparisons that an if/else if ladder creates.
This will happen mostly with simple switch statements with no default: value (and is compiler/language dependent).
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
July 24 2012 21:01 GMT
#2995
On July 25 2012 05:20 snively wrote:
lets say i have an integer that stores one of 4 flags. depending on the flag, i want my code to perform 4 different actions

whats the difference between using a switch and an if else if ladder?
is one of them better to use than the other?

thanks in advance.

When you say flags it sounds like you're talking about a bitfield with setting the bits for flags. In that case you'd need to use the and & operator, and can't really use a switch statement unless you were detecting combinations of bit patterns, instead of just the separate bits.

Nobody here is going to know what is faster, as it depends on the code you write and the compiler you use. You can stress test it yourself to figure out what is faster for you.
snively
Profile Blog Joined August 2011
United States1159 Posts
July 24 2012 21:10 GMT
#2996
Denar and CecilSunkure,
i was trying to ask if either one were better than the other in terms of readability and convention
(as in, using while loops instead of goto statements)
but i guess it doesnt really matter
im not doing anything where i would need to care so much about speed

thanks anyway!
My religion is Starcraft
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
July 24 2012 21:28 GMT
#2997
On July 25 2012 06:10 snively wrote:
Denar and CecilSunkure,
i was trying to ask if either one were better than the other in terms of readability and convention
(as in, using while loops instead of goto statements)
but i guess it doesnt really matter
im not doing anything where i would need to care so much about speed

thanks anyway!

Either one is fine

I myself like switches more.
RoyGBiv_13
Profile Blog Joined August 2010
United States1275 Posts
Last Edited: 2012-07-24 21:34:05
July 24 2012 21:33 GMT
#2998
On July 25 2012 05:20 snively wrote:
lets say i have an integer that stores one of 4 flags. depending on the flag, i want my code to perform 4 different actions

whats the difference between using a switch and an if else if ladder?
is one of them better to use than the other?

thanks in advance.


if flags can coexist, such as READ & WRITE....
+ Show Spoiler +

#define FLAG_ONE
#define FLAG_TWO
#define FLAG_THREE
#define FLAG_FOUR

void do_something(int flags)
{
if(flags | FLAG_ONE)

if(flags | FLAG_TWO)

...
}



Otherwise:

+ Show Spoiler +
use a switch & case statement
Any sufficiently advanced technology is indistinguishable from magic
Frigo
Profile Joined August 2009
Hungary1023 Posts
July 24 2012 22:55 GMT
#2999
It's a good idea to use enums and switch statements because using integers for this job only creates confusion and errors.
http://www.fimfiction.net/user/Treasure_Chest
EscPlan9
Profile Blog Joined December 2006
United States2777 Posts
July 24 2012 23:01 GMT
#3000
^^ Definitely enums and switch statements for conciseness and readability.
Undefeated TL Tecmo Super Bowl League Champion
Prev 1 148 149 150 151 152 1032 Next
Please log in or register to reply.
Live Events Refresh
ChoboTeamLeague
01:00
S33 Finals FxB vs Chumpions
Discussion
Replay Cast
23:00
WardiTV Mondays #60
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
yabsab 59
Icarus 5
Dota 2
monkeys_forever752
League of Legends
JimRising 659
Counter-Strike
m0e_tv292
Coldzera 205
Other Games
summit1g12598
C9.Mang0306
NeuroSwarm57
Trikslyr33
Organizations
Other Games
gamesdonequick1009
BasetradeTV15
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 17 non-featured ]
StarCraft 2
• Hupsaiya 147
• practicex 21
• Kozan
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
League of Legends
• Rush1266
• Lourlo997
• Stunt493
Counter-Strike
• Shiphtur186
Other Games
• Scarra1601
Upcoming Events
WardiTV Korean Royale
5h 52m
BSL: GosuLeague
14h 52m
PiGosaur Cup
18h 52m
The PondCast
1d 3h
Replay Cast
1d 16h
RSL Revival
2 days
herO vs Zoun
Classic vs Reynor
Maru vs SHIN
MaxPax vs TriGGeR
BSL: GosuLeague
2 days
RSL Revival
3 days
WardiTV Korean Royale
3 days
RSL Revival
4 days
[ Show More ]
WardiTV Korean Royale
4 days
IPSL
4 days
Julia vs Artosis
JDConan vs DragOn
RSL Revival
5 days
Wardi Open
5 days
IPSL
5 days
StRyKeR vs OldBoy
Sziky vs Tarson
Replay Cast
5 days
Replay Cast
6 days
Liquipedia Results

Completed

Proleague 2025-11-14
Stellar Fest: Constellation Cup
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
BSL Season 21
CSCL: Masked Kings S3
SLON Tour Season 2
RSL Revival: Season 3
META Madness #9
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
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 © 2025 TLnet. All Rights Reserved.