• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 04:34
CET 10:34
KST 18:34
  • 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
TL.net Map Contest #21: Winners11Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
[TLMC] Fall/Winter 2025 Ladder Map Rotation4Weekly Cups (Nov 3-9): Clem Conquers in Canada4SC: Evo Complete - Ranked Ladder OPEN ALPHA8StarCraft, SC2, HotS, WC3, Returning to Blizzcon!45$5,000+ WardiTV 2025 Championship7
StarCraft 2
General
[TLMC] Fall/Winter 2025 Ladder Map Rotation Mech is the composition that needs teleportation t Weekly Cups (Nov 3-9): Clem Conquers in Canada Craziest Micro Moments Of All Time? SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle Sparkling Tuna Cup - Weekly Open Tournament $5,000+ WardiTV 2025 Championship Merivale 8 Open - LAN - Stellar Fest
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection
Brood War
General
Rapidtags: The Ultimate Tool for Hashtag and Keywo Terran 1:35 12 Gas Optimization FlaSh on: Biggest Problem With SnOw's Playstyle BW General Discussion BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[BSL21] RO32 Group D - Sunday 21:00 CET [BSL21] RO32 Group C - Saturday 21:00 CET [ASL20] Grand Finals [Megathread] Daily Proleagues
Strategy
Current Meta PvZ map balance How to stay on top of macro? Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? Path of Exile Dawn of War IV
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
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread The Games Industry And ATVI
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! 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: 1208 users

The Big Programming Thread - Page 875

Forum Index > General Forum
Post a Reply
Prev 1 873 874 875 876 877 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.
BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
Last Edited: 2017-04-20 00:12:40
April 20 2017 00:04 GMT
#17481
On April 20 2017 08:30 travis wrote:
**p;
*k;

statement 1: p = &k;
statement 2: *p = k;

both of these statements are the same?


lets assume there's no aliasing here, say:

T* k = 0x01, &k == 0x10 (k as a variable holds the value of 0x01 which is an address of some object of type T, it's own address is 0x10)
T* m = 0x02, &m == 0x20 (same for m)
T** p = &m;

then, initially:
p == 0x20

1) p = &k which translates to p = 0x10 which leads to: p == 0x10, m == 0x02
2) *p = k which translates to m = 0x01 which leads to: p == 0x20, m == 0x01

EDIT: made a little mistake on the first try but basically those are quite different
You want 20 good men, but you need a bad pussy.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
April 20 2017 00:07 GMT
#17482
ah ok yeah i get it, thanks
pointers are *still* rough haha
Manit0u
Profile Blog Joined August 2004
Poland17428 Posts
April 20 2017 01:15 GMT
#17483
One of the reasons why I work with highly abstract languages in the first place (Ruby). I just write a bunch of pseudo code and it "just works". I don't have to worry about so much bullshit which leaves me plenty of time to figure out what and how my code should do things instead of fighting a constant battle just to make it work.

I don't know. I enjoy me some C now and then, but working with it full-time would be too nerve-wracking for me.
Time is precious. Waste it wisely.
Hanh
Profile Joined June 2016
146 Posts
April 20 2017 01:43 GMT
#17484
On April 20 2017 06:55 BluzMan wrote:
Show nested quote +
On April 20 2017 06:47 travis wrote:
but j is not null at that point, j is still a pointer to the section of memory that was freed.

p points to null, j contains the address it was assigned when we did j = p

also the above example is bad too. you don't want to free a bunch of memory that was never allocated you'll get seg faults or worse

maybe you guys are referencing behavior of free in c++ ?


The first thing that comes to mind without allocating memory would be casting the input to an array of ints, sorting it and just using continue if a[i] == a[i - 1].

Double free is a dangerous error and should be avoided at all costs. Furthermore, you can't tell if a pointer has been freed just by looking at it, otherwise, C programming would have been really easy. Freeing a nullptr is generally safe, but you have to set it to nullptr first.


Don't cast a pointer to int, it is not portable and unsafe. Just leave it as a pointer.
Hanh
Profile Joined June 2016
146 Posts
April 20 2017 01:45 GMT
#17485
On April 20 2017 08:03 Manit0u wrote:
Show nested quote +
On April 20 2017 07:25 travis wrote:
On April 20 2017 06:55 BluzMan wrote:
On April 20 2017 06:47 travis wrote:
but j is not null at that point, j is still a pointer to the section of memory that was freed.

p points to null, j contains the address it was assigned when we did j = p

also the above example is bad too. you don't want to free a bunch of memory that was never allocated you'll get seg faults or worse

maybe you guys are referencing behavior of free in c++ ?


The first thing that comes to mind without allocating memory would be casting the input to an array of ints, sorting it and just using continue if a[i] == a[i - 1].

Double free is a dangerous error and should be avoided at all costs. Furthermore, you can't tell if a pointer has been freed just by looking at it, otherwise, C programming would have been really easy. Freeing a nullptr is generally safe, but you have to set it to nullptr first.


well that's a way cooler solution than the given solution, I guess technically yours is faster than the given solution too


This is indeed nice...


#include <stdio.h>
#include <stdlib.h>

int compare(const void *a, const void *b);

int main(void) {
int i = 0;
int len = 2;
int **ary = malloc(sizeof(int) * len);
int *p = malloc(sizeof(int));;
int *j = p;

ary[0] = p;
ary[1] = j;

qsort(ary, len, sizeof(int), compare);

for (i; i < len; i++) {
if (i > 0 && ary[i] != ary[i - 1]) {
free(ary[i]);
}
}

free(ary);

printf("We are free!\n");

return 0;
}

int compare(const void *a, const void *b) {
return (*(int*)a - *(int*)b);
}


This doesn't free ary[0]
Manit0u
Profile Blog Joined August 2004
Poland17428 Posts
April 20 2017 08:19 GMT
#17486
On April 20 2017 10:45 Hanh wrote:
Show nested quote +
On April 20 2017 08:03 Manit0u wrote:
On April 20 2017 07:25 travis wrote:
On April 20 2017 06:55 BluzMan wrote:
On April 20 2017 06:47 travis wrote:
but j is not null at that point, j is still a pointer to the section of memory that was freed.

p points to null, j contains the address it was assigned when we did j = p

also the above example is bad too. you don't want to free a bunch of memory that was never allocated you'll get seg faults or worse

maybe you guys are referencing behavior of free in c++ ?


The first thing that comes to mind without allocating memory would be casting the input to an array of ints, sorting it and just using continue if a[i] == a[i - 1].

Double free is a dangerous error and should be avoided at all costs. Furthermore, you can't tell if a pointer has been freed just by looking at it, otherwise, C programming would have been really easy. Freeing a nullptr is generally safe, but you have to set it to nullptr first.


well that's a way cooler solution than the given solution, I guess technically yours is faster than the given solution too


This is indeed nice...


#include <stdio.h>
#include <stdlib.h>

int compare(const void *a, const void *b);

int main(void) {
int i = 0;
int len = 2;
int **ary = malloc(sizeof(int) * len);
int *p = malloc(sizeof(int));;
int *j = p;

ary[0] = p;
ary[1] = j;

qsort(ary, len, sizeof(int), compare);

for (i; i < len; i++) {
if (i > 0 && ary[i] != ary[i - 1]) {
free(ary[i]);
}
}

free(ary);

printf("We are free!\n");

return 0;
}

int compare(const void *a, const void *b) {
return (*(int*)a - *(int*)b);
}


This doesn't free ary[0]


You're right. I'm dumb
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18114 Posts
Last Edited: 2017-04-20 12:39:02
April 20 2017 12:12 GMT
#17487
On April 20 2017 09:03 Nesserev wrote:
(Also, both are valid statements.)


// original setup
p -> a -> d
k -> e

// statement 1
a -> d
p -> k -> e

// statement 2
p -> a -> e
k -> e


Interesting. You're allowed to put operators on the LHS of assignments? Any operator (that makes sense)? Or just pointer operators?

In other words, can you do:


int i, j, k;
i + 1 = 8; // i is 7

(i == 7? j : k) = 101;


I sure hope not, but just wondering. Would be funny to write almost prolog-esque code in C. Just to fuck with whoever has to debug.

E: thinking about it a bit more, dereferencing in the LHS of the statement makes perfect sense, it's just syntax I am not used to seeing. So nvm about my questions about operators. I'm sure they're not allowed. No sane imperative language should allow that kind of stuff
Hanh
Profile Joined June 2016
146 Posts
April 20 2017 13:28 GMT
#17488
It's quite common in C because that's how you would write to a pointer location. You can assign to a lvalue which is an expression that has a location in memory. So things like,


*(p+1)
(*p).a
*(2+p)


are ok. They could also be written as

p[1]
p->a
p[2]


BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
April 20 2017 15:46 GMT
#17489
On April 20 2017 21:12 Acrofales wrote:
Show nested quote +
On April 20 2017 09:03 Nesserev wrote:
(Also, both are valid statements.)


// original setup
p -> a -> d
k -> e

// statement 1
a -> d
p -> k -> e

// statement 2
p -> a -> e
k -> e


Interesting. You're allowed to put operators on the LHS of assignments? Any operator (that makes sense)? Or just pointer operators?

In other words, can you do:


int i, j, k;
i + 1 = 8; // i is 7

(i == 7? j : k) = 101;


I sure hope not, but just wondering. Would be funny to write almost prolog-esque code in C. Just to fuck with whoever has to debug.

E: thinking about it a bit more, dereferencing in the LHS of the statement makes perfect sense, it's just syntax I am not used to seeing. So nvm about my questions about operators. I'm sure they're not allowed. No sane imperative language should allow that kind of stuff


It takes a while to get your head around, but in C++ even this is possible:
 func() = value; 
You want 20 good men, but you need a bad pussy.
BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
April 20 2017 15:53 GMT
#17490
On April 20 2017 10:43 Hanh wrote:
Show nested quote +
On April 20 2017 06:55 BluzMan wrote:
On April 20 2017 06:47 travis wrote:
but j is not null at that point, j is still a pointer to the section of memory that was freed.

p points to null, j contains the address it was assigned when we did j = p

also the above example is bad too. you don't want to free a bunch of memory that was never allocated you'll get seg faults or worse

maybe you guys are referencing behavior of free in c++ ?


The first thing that comes to mind without allocating memory would be casting the input to an array of ints, sorting it and just using continue if a[i] == a[i - 1].

Double free is a dangerous error and should be avoided at all costs. Furthermore, you can't tell if a pointer has been freed just by looking at it, otherwise, C programming would have been really easy. Freeing a nullptr is generally safe, but you have to set it to nullptr first.


Don't cast a pointer to int, it is not portable and unsafe. Just leave it as a pointer.


I don't exactly remember what the standard says about comparing pointers that don't belong the the same range, but I'm pretty sure it's a step towards undefined behaviour. I'm also pretty sure that it defines an uintptr_t type that you can safely cast any pointer to. I should have made myself clear on that one, yeah.
You want 20 good men, but you need a bad pussy.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-04-20 22:19:36
April 20 2017 22:07 GMT
#17491
On April 21 2017 00:46 BluzMan wrote:
Show nested quote +
On April 20 2017 21:12 Acrofales wrote:
On April 20 2017 09:03 Nesserev wrote:
(Also, both are valid statements.)


// original setup
p -> a -> d
k -> e

// statement 1
a -> d
p -> k -> e

// statement 2
p -> a -> e
k -> e


Interesting. You're allowed to put operators on the LHS of assignments? Any operator (that makes sense)? Or just pointer operators?

In other words, can you do:


int i, j, k;
i + 1 = 8; // i is 7

(i == 7? j : k) = 101;


I sure hope not, but just wondering. Would be funny to write almost prolog-esque code in C. Just to fuck with whoever has to debug.

E: thinking about it a bit more, dereferencing in the LHS of the statement makes perfect sense, it's just syntax I am not used to seeing. So nvm about my questions about operators. I'm sure they're not allowed. No sane imperative language should allow that kind of stuff


It takes a while to get your head around, but in C++ even this is possible:
 func() = value; 


Only if func() returns an lvalue-reference though? So, it's consistent with lvalue's idea.

Edit: As far as I remember, lvalue can only be on the left side. It's a thing that exists after the line is executed (unlike rvalue). So, if a function returns a reference (Object&), then it's an object that persists after function's call, hence it's considered to be lvalue so it's OK to have:

 func() = value; 


Essentially, you're saying

 variable = value; 
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-04-20 22:30:21
April 20 2017 22:28 GMT
#17492
edit: ah no, explanation is way diff from C
Hanh
Profile Joined June 2016
146 Posts
April 20 2017 23:16 GMT
#17493
On April 21 2017 00:53 BluzMan wrote:
Show nested quote +
On April 20 2017 10:43 Hanh wrote:
On April 20 2017 06:55 BluzMan wrote:
On April 20 2017 06:47 travis wrote:
but j is not null at that point, j is still a pointer to the section of memory that was freed.

p points to null, j contains the address it was assigned when we did j = p

also the above example is bad too. you don't want to free a bunch of memory that was never allocated you'll get seg faults or worse

maybe you guys are referencing behavior of free in c++ ?


The first thing that comes to mind without allocating memory would be casting the input to an array of ints, sorting it and just using continue if a[i] == a[i - 1].

Double free is a dangerous error and should be avoided at all costs. Furthermore, you can't tell if a pointer has been freed just by looking at it, otherwise, C programming would have been really easy. Freeing a nullptr is generally safe, but you have to set it to nullptr first.


Don't cast a pointer to int, it is not portable and unsafe. Just leave it as a pointer.


I don't exactly remember what the standard says about comparing pointers that don't belong the the same range, but I'm pretty sure it's a step towards undefined behaviour. I'm also pretty sure that it defines an uintptr_t type that you can safely cast any pointer to. I should have made myself clear on that one, yeah.


Well, if you can't compare pointers on your architecture you can't compare pointers casted to integers either.
On segmented memory architecture, two pointers can have different values and yet refer to the same physical location. Even in linear models, it could happen if for example these pointers are obtained from mmap. But otherwise, pointers to the same type have total ordering.

BTW uintptr_t is an optional type.
Manit0u
Profile Blog Joined August 2004
Poland17428 Posts
April 21 2017 12:12 GMT
#17494
Time is precious. Waste it wisely.
Acrofales
Profile Joined August 2010
Spain18114 Posts
April 21 2017 12:26 GMT
#17495
Lol. That is one dated song! :D
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-04-21 17:44:31
April 21 2017 17:42 GMT
#17496
we've been assigned a bit of a harder project than anything we've had before
anyways i need to check up on my understanding of trees/recursion

Let's say I am given a tree of "commands", and the commands come in 2 types: instructions and conjunctions. Each node on the tree is an instruction, or a conjunction (such as &&, or piping).

commands have been entered into the tree such that the first most instruction you execute will be the furthest left leaf.

The tree is a binary tree, where instructions are always leafs and conjunctions always have a left and a right node.

Would I be correct in that the way I should traverse this tree, to execute commands in order, should be something like this:


recursive_traversal(node) {
if node is a tree {
recursive_traversal(left)
visit current node
recursive_traversal(right)
}
if node is a leaf {
visit current node
}
}



edit: wait.. why am I doing this. In this case I could just do an in order traversal of nodes couldn't I? hmmm now I am worried there was some reason why I wanted to do this in this way
Acrofales
Profile Joined August 2010
Spain18114 Posts
Last Edited: 2017-04-21 17:57:07
April 21 2017 17:56 GMT
#17497
The pseudocode you posted IS an in-order traversal of nodes. And seems correct to me...
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-04-21 18:07:49
April 21 2017 18:07 GMT
#17498
On April 22 2017 02:56 Acrofales wrote:
The pseudocode you posted IS an in-order traversal of nodes. And seems correct to me...


well for in order traversal can't I get rid of the the first if statement and remove the 2nd if statement/block entirely ?

oh wait, no I can't huh. well I am a bit silly aren't I
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-04-22 14:23:17
April 22 2017 14:00 GMT
#17499
edit: nevermind. rubber ducky debugging. sorry for spam
tofucake
Profile Blog Joined October 2009
Hyrule19151 Posts
Last Edited: 2017-04-22 14:30:34
April 22 2017 14:30 GMT
#17500
don't apologize to my duck

[image loading]
Liquipediaasante sana squash banana
Prev 1 873 874 875 876 877 1032 Next
Please log in or register to reply.
Live Events Refresh
Replay Cast
09:00
WardiTV Mondays #59
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 299
StarCraft: Brood War
Britney 49000
Rain 2987
Hyuk 2893
Soma 360
Backho 327
Rush 213
Pusan 117
JulyZerg 53
sSak 31
zelot 14
[ Show more ]
NaDa 12
Noble 11
ZerO 10
Hm[arnc] 8
Terrorterran 6
Dota 2
XaKoH 419
XcaliburYe147
Counter-Strike
fl0m1798
olofmeister656
shoxiejesuss411
oskar63
Super Smash Bros
Mew2King237
Other Games
ceh9502
Happy284
Pyrionflax116
ZerO(Twitch)4
Organizations
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH250
• LUISG 22
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1347
• Stunt515
Upcoming Events
OSC
1h 56m
Kung Fu Cup
2h 26m
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
13h 26m
The PondCast
1d
RSL Revival
1d
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
1d 2h
WardiTV Korean Royale
1d 2h
PiGosaur Monday
1d 15h
RSL Revival
2 days
Classic vs Creator
Cure vs TriGGeR
Kung Fu Cup
2 days
[ Show More ]
CranKy Ducklings
3 days
RSL Revival
3 days
herO vs Gerald
ByuN vs SHIN
Kung Fu Cup
3 days
IPSL
3 days
ZZZero vs rasowy
Napoleon vs KameZerg
BSL 21
3 days
Tarson vs Julia
Doodle vs OldBoy
eOnzErG vs WolFix
StRyKeR vs Aeternum
Sparkling Tuna Cup
4 days
RSL Revival
4 days
Reynor vs sOs
Maru vs Ryung
Kung Fu Cup
4 days
WardiTV Korean Royale
4 days
BSL 21
4 days
JDConan vs Semih
Dragon vs Dienmax
Tech vs NewOcean
TerrOr vs Artosis
IPSL
4 days
Dewalt vs WolFix
eOnzErG vs Bonyth
Wardi Open
5 days
Monday Night Weeklies
5 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

Proleague 2025-11-07
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
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
BLAST Open Fall Qual

Upcoming

SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
META Madness #9
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.