• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 02:57
CEST 08:57
KST 15:57
  • 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
Team TLMC #5 - Finalists & Open Tournaments1[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
StarCraft II 5.0.15 PTR Patch Notes139BSL 2025 Warsaw LAN + Legends Showmatch2Weekly Cups (Sept 8-14): herO & MaxPax split cups4WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8
StarCraft 2
General
StarCraft II 5.0.15 PTR Patch Notes #1: Maru - Greatest Players of All Time Team TLMC #5 - Finalists & Open Tournaments Team Liquid Map Contest #21 - Presented by Monster Energy Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues
Tourneys
Stellar Fest KSL Week 80 StarCraft Evolution League (SC Evo Biweekly) RSL: Revival, a new crowdfunded tournament series SC2's Safe House 2 - October 18 & 19
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
ASL20 General Discussion BW General Discussion Diplomacy, Cosmonarchy Edition Soulkey on ASL S20 ASL TICKET LIVE help! :D
Tourneys
[ASL20] Ro16 Group D BSL 2025 Warsaw LAN + Legends Showmatch [ASL20] Ro16 Group C Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Borderlands 3 Nintendo Switch Thread General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The Big Programming Thread UK Politics Mega-thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
Too Many LANs? Tournament Ov…
TrAiDoS
i'm really bored guys
Peanutsc
I <=> 9
KrillinFromwales
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1791 users

The Big Programming Thread - Page 842

Forum Index > General Forum
Post a Reply
Prev 1 840 841 842 843 844 1031 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.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-12 00:59:18
February 12 2017 00:58 GMT
#16821
Or, if you decide to do C++, you can do this instead:

constexpr size_t ARRAY_LENGTH = 50;
T arr[ARRAY_LENGTH];

C would be just outdated if it wasn't for embedded systems, operating systems and drivers.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
February 12 2017 01:18 GMT
#16822
In C, can I refer to an array index by the value of another array?

like


int array[5];
int array_two[5];

array_two[3] = 1;

array[array_two[3]] = 7;
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
February 12 2017 01:45 GMT
#16823
Did compiler stop working for you? Part of fun is to compile and see.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
February 12 2017 01:47 GMT
#16824
sigh

*goes and checks*
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-12 01:55:42
February 12 2017 01:51 GMT
#16825
Wow, I've just tried to replace 5 with the following:

const int SIZE = 5;
int array[SIZE];

Fine in C++. Not compiling in C. Fuck you C. :D
That said, if I was going to do it properly in C++, it would be:

constexpr size_t SIZE = 5;

Your example compiles and runs fine in C and C++. However, I'd advise you to stick with size_t instead of int for size of array. size_t is an unsigned integer or unsigned long long, so it doesn't make sense for size of arrays to have a negative value.
Hanh
Profile Joined June 2016
146 Posts
Last Edited: 2017-02-12 03:22:31
February 12 2017 03:17 GMT
#16826
These dynamic arrays are allocated from the stack. Unless you can make sure that they are small you shouldn't spend stack space because it's only typically a few K in size.
If you want to allocate dynamically from the stack, there is the function 'alloca'
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-13 00:07:13
February 13 2017 00:05 GMT
#16827
On February 12 2017 12:17 Hanh wrote:
These dynamic arrays are allocated from the stack. Unless you can make sure that they are small you shouldn't spend stack space because it's only typically a few K in size.
If you want to allocate dynamically from the stack, there is the function 'alloca'


Good to know if I ever have to write pure C code without malloc. I remember at university there was some task to ask user for numbers. Catch was not knowing how many they are, so we had to do some dumb stuff like

#define ARRAY_LENGTH 1000

And hope it's enough...

Good thing is you have std::vector<type> in such cases, but alas, it was a C module. I suppose you can still do a dynamic array like vector, but you will just have to reinvent the wheel.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2017-02-13 00:41:51
February 13 2017 00:40 GMT
#16828
--- Nuked ---
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2017-02-13 02:46:53
February 13 2017 02:43 GMT
#16829
-lol misread-
There is no one like you in the universe.
dsyxelic
Profile Joined May 2010
United States1417 Posts
Last Edited: 2017-02-13 03:35:16
February 13 2017 03:09 GMT
#16830
snippet of my code in python:

'solved'

I'm getting 'AttributeError: 'int' object has no attribute 'last'' on line the first line of my def INSERT

Anyone know why this is? I'm pretty sure I did this correctly but I guess not

edit:

holy lol

apparently def whatever (x, self) doesn't work? I did not know self had to be the first argument. sigh I hate syntax issues lol
TL/SKT
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2017-02-13 03:36:38
February 13 2017 03:34 GMT
#16831
On February 13 2017 12:09 dsyxelic wrote:
snippet of my code in python:


from array import array
class ListArray:

maxlength = 100
elements = array('i')
last = -1

def __init__(self):
self.elements=[0]*self.maxlength

#return position of last index+1
def END(self):
return last+1

def INSERT(x, p, self):
if (self.last+1 >= self.maxlength):
print 'Error: Cannot insert, list is full.'


I'm getting 'AttributeError: 'int' object has no attribute 'last'' on line the first line of my def INSERT

Anyone know why this is? I'm pretty sure I did this correctly but I guess not


AFAIK

   def INSERT(x, p, self):


should be

   def INSERT(self, x, p):


otherwise you should be calling x.last
There is no one like you in the universe.
dsyxelic
Profile Joined May 2010
United States1417 Posts
February 13 2017 03:36 GMT
#16832
On February 13 2017 12:34 Blisse wrote:
Show nested quote +
On February 13 2017 12:09 dsyxelic wrote:
snippet of my code in python:


from array import array
class ListArray:

maxlength = 100
elements = array('i')
last = -1

def __init__(self):
self.elements=[0]*self.maxlength

#return position of last index+1
def END(self):
return last+1

def INSERT(x, p, self):
if (self.last+1 >= self.maxlength):
print 'Error: Cannot insert, list is full.'


I'm getting 'AttributeError: 'int' object has no attribute 'last'' on line the first line of my def INSERT

Anyone know why this is? I'm pretty sure I did this correctly but I guess not


AFAIK


def INSERT(x, p, self):


should be


def INSERT(self, x, p):


otherwise you should be calling x.last


thank you haha I just realized that.
IDE's are helpful. I tried my code in an IDE and it basically told me what to fix right away. I should use the IDE more when I have syntax problems.
TL/SKT
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2017-02-13 03:49:43
February 13 2017 03:46 GMT
#16833
--- Nuked ---
dsyxelic
Profile Joined May 2010
United States1417 Posts
February 13 2017 04:03 GMT
#16834
On February 13 2017 12:46 Nesserev wrote:
Show nested quote +
On February 13 2017 12:09 dsyxelic wrote:
snippet of my code in python:

'solved'

I'm getting 'AttributeError: 'int' object has no attribute 'last'' on line the first line of my def INSERT

Anyone know why this is? I'm pretty sure I did this correctly but I guess not

edit:

holy lol

apparently def whatever (x, self) doesn't work? I did not know self had to be the first argument. sigh I hate syntax issues lol

Self has to be the first parameter of your class method, because the object on which the method is called, is always passed as the first argument. (The parameter's name doesn't have to be self though... but you should call it self anyway, because conventions.).

Second, I also noticed that you made maxlength, elements and last class member, so basically every instance of ListArray would share those variables... if you have more than one instance of said class, they'd probably overwrite each other constantly. Instead, instance members should be initialized in the __init__ function, any other class function, or just x.member from the "outside".


class ListArray:

maxlength = 100 # class member, one per class, shared by all instances

def __init__(self):
self.elements=array('i') # instance member, one per instance
self.last = -1


Basically, instance members have to be tagged on. When you say x = ListArray(), you start out with an "empty" object, and __init__ for ListArray is run, which first adds the elements member, and then the last member.


Thank you, that was really helpful. That was silly of me.
Everything's working great now, thank you!
TL/SKT
Manit0u
Profile Blog Joined August 2004
Poland17347 Posts
February 13 2017 11:11 GMT
#16835
https://datamancer.com/

Fuuuuck me! Why do I have to be so poor?
Time is precious. Waste it wisely.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
February 13 2017 17:02 GMT
#16836
--- Nuked ---
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
February 13 2017 19:07 GMT
#16837
I've been asked if there is any significant technology coming up for computing, but I don't know anything major other than quantum computer. Is there anything else?
Manit0u
Profile Blog Joined August 2004
Poland17347 Posts
February 13 2017 21:25 GMT
#16838
On February 14 2017 04:07 Shield wrote:
I've been asked if there is any significant technology coming up for computing, but I don't know anything major other than quantum computer. Is there anything else?


Besides quantum computing you have some closer goals, like everything working under 64bit architecture, parallelism everywhere and all programs being able to utilize all of the cores. But that's more on the software side. In hardware we already have some new materials like graphene, some cooling technologies without the use of fans or water (plates that bend under temperature and generate air flow) etc. etc.

Currently we're pretty much at the limit of silicon and other materials so until something new comes along and is cheap enough to mass-produce we're pretty much done (notice that for some years now CPU clock speed doesn't really increase, just the number of cores does).
Time is precious. Waste it wisely.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
February 13 2017 22:26 GMT
#16839
Let's go over some discrete math questions I am unsure about!

give an infinite subset X in Q that contains no elements in set N
my answer: Q less than 0 (this one seemed easy but it's weird so im checking)

give an infinite subset X in R that contains no elements in set Q
my answer: the set of irrational numbers? though I know of no actual proof that this set is infinite in size, I am just guessing it is



find an infinite domain where the statement is true OR show that there is NO such domain. explain. then do the same but attempting to show that the statement is false.

(for all x)(there exists y)[(x < y < 1 ) and (not (x < z < y) ]

for False, I say the natural numbers. If y < 1, then y must be 0. So x cannot be less than y.

for True, we know we our domain must not be a dense set (I've got this right, correct?) since there is no z between x and y. So we are dealing with integers or some such. But there doesn't seem to be any domain that actually works here, because we can't find a y > x and less than 1 in a set that isn't dense.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
February 13 2017 23:03 GMT
#16840
On February 14 2017 07:26 travis wrote:
give an infinite subset X in Q that contains no elements in set N
my answer: Q less than 0 (this one seemed easy but it's weird so im checking)

That works. Also any subset that is each element in N plus some fraction between 0 and 1, or 1 divided by all integer numbers greater than 1 and so on...

On February 14 2017 07:26 travis wrote:
give an infinite subset X in R that contains no elements in set Q
my answer: the set of irrational numbers? though I know of no actual proof that this set is infinite in size, I am just guessing it is

Can get real creative with this one too. Like I'm pretty sure that the set of all n-th roots of 3 where n in N and n > 1 should fit. Integer (except 0) multiples of pi (or any irrational number) work just as well.
If you have a good reason to disagree with the above, please tell me. Thank you.
Prev 1 840 841 842 843 844 1031 Next
Please log in or register to reply.
Live Events Refresh
Korean StarCraft League
03:00
Week 80
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft703
Nina 189
StarCraft: Brood War
hero 688
PianO 284
Nal_rA 134
sorry 69
Noble 34
Free 32
JulyZerg 21
Aegong 20
Bale 10
Dota 2
NeuroSwarm144
League of Legends
JimRising 592
Counter-Strike
Stewie2K698
semphis_39
Super Smash Bros
Westballz22
Other Games
summit1g4119
C9.Mang0252
Maynarde178
Trikslyr40
ViBE37
Organizations
Other Games
gamesdonequick754
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 15 non-featured ]
StarCraft 2
• Berry_CruncH398
• LUISG 9
• Adnapsc2 6
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Jankos602
• Stunt556
Upcoming Events
BSL Open LAN 2025 - War…
1h 4m
RSL Revival
3h 4m
Reynor vs Cure
TBD vs Zoun
OSC
14h 4m
BSL Open LAN 2025 - War…
1d 1h
RSL Revival
1d 3h
Classic vs TBD
WardiTV Invitational
1d 4h
Online Event
1d 9h
Wardi Open
2 days
Monday Night Weeklies
2 days
Sparkling Tuna Cup
3 days
[ Show More ]
LiuLi Cup
4 days
The PondCast
5 days
CranKy Ducklings
6 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
RSL Revival: Season 2
Maestros of the Game
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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.