• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 10:10
CEST 16:10
KST 23:10
  • 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] Ro16 Preview: Holy Diver4[ASL22] Ro16 Preview: Rough Waters10[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915
Community News
Weekly Cups (Sep 7-12): SHIN, ByuN, MaxPax double down1StarCraft open world shooter announced at BlizzCon98Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism10Official StarCraft website teases new content ahead of BlizzCon?179Stellar Fest TWO the Moon (Dec 16-20)9
StarCraft 2
General
Weekly Cups (Sep 7-12): SHIN, ByuN, MaxPax double down How do you feel about the StarCraft shooter announcement at BlizzCon 2026? Blizzard Classic Cup @ BlizzCon 2026 - $100k prize pool StarCraft open world shooter announced at BlizzCon Balance hotfix patch 5.0.16b (July 16)
Tourneys
RSL Revival: Season 6 - Qualifiers and Main Event RSL goes to London! 2026 Offline Finals Nov 21-22 SC2 AI Tournament 2026 Fall Sparkling Tuna Cup - Weekly Open Tournament KSL Week #92
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 543 Enhanced Defenses The PondCast: SC2 News & Results Mutation # 542 The Ascended Mutation # 541 Binary Choice
Brood War
General
Syncronization issues and can't find games ASL22 General Discussion Why Protoss Struggles on ASL (Ft. Shuttle, Tulbo) Remastered crash fix suggestions BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[ASL22] Ro16 Group D [ASL22] Ro16 Group C KCM Race Survival 2026 Season 3 [Megathread] Daily Proleagues
Strategy
Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation Game Theory for Starcraft
Other Games
General Games
Nintendo Switch Thread Warcraft III: The Frozen Throne Stormgate/Frost Giant Megathread EVE Corporation Diablo IV
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Community Thread
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Canadian Politics Mega-thread Post Your Watch! Artificial Intelligence Thread
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Diablo Animated Series on Netflix
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
[meme] I finally understa…
LUCKY_NOOB
Virtual Romance, Real-Life C…
TrAiDoS
Regacy Esports:Our Goa…
regacyesports
Dreaming of BW patches (mod…
c3rberUs
Customize Sidebar...

Website Feedback

Closed Threads



Active: 6479 users

The Big Programming Thread - Page 40

Forum Index > General Forum
Post a Reply
Prev 1 38 39 40 41 42 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.
Siniyas
Profile Joined January 2011
Germany66 Posts
Last Edited: 2011-03-02 16:57:05
March 02 2011 16:40 GMT
#781
On March 03 2011 01:15 FunkyLich wrote:
Okay, I am supposed to be making a linked list with java and I have a different problem than the person who brought up linked lists earlier. I understand the linked list concept very well. And I would love to be able to do it in C because I feel like pointers would make it easier. But I have to do it in Java.

This is the crux of my problem: I simply do not know how to iteratively create objects (see how this ties in with linked lists further down). According to my faulty understanding of objects, I need a variable for every object I make. Thus every time I make an object, I need to write a line like this.

CLASS object-variable = new CLASS();

If someone could be so kind to explain why this is unnecessary in java, and what is wrong with my understanding of objects that hinders me from seeing the light, that would be great. This is really all I'm asking, but if you want specifics keep reading.



In the way I have it set up, the linked list is (when instantiated) an object of objects. The objects that make the list are simple nodes with two data values (some integer and a reference value to the second node). The linked list class takes an array input and generates a linked list based on the size of the array. So with a length 100 array, the linked list class would need to instantiate 100 nodes. And I would need to do this iteratively of course (or recursively if you want). I just need a way to make these nodes without each of them needing its own variable.


Hopefully im understanding your problem right. So you have your class ListObject with a variable of the same type.
So what i would do for an array is simply write constructor which takes a ListObject and the integer and then you can simply do this
ListObject head = new ListObject(null,yourArray[0]);
for(int i = 1;i++,i<yourArray.size() ){
head = new ListObject(head,yourArray[i])
}

which is practically the same as in c++. What you are doing here, is putting a reference to a new ListObject into head, while putting the reference to the old object into the ListObject variable of this object.

Also in general you can use new even without a variable declaration.
For example calling a method that takes an Object you can just write, myMethod(new Object());
or you can even just use new by itself, for example if you have a class Calc, that calculates the squareroot of a number and then prints it a line like this is ok.
new Calc(x);
and it prints out result.
you can even call methods directly on these.
new Calc(x).showSteps();

Hope that helps in your understanding.


As an extra, there is a LinkedList already in Java, so you can look at its sourcecode for further understanding on other problems you might have.
Let it rip
FunkyLich
Profile Blog Joined August 2010
United States107 Posts
March 02 2011 16:52 GMT
#782
I believe it does. So I can create an object without assigning it a variable.

Many thanks for the prompt reply. I will try this out and report back if I run into another major snag.
icystorage
Profile Blog Joined November 2008
Jollibee19350 Posts
Last Edited: 2011-03-03 14:40:37
March 03 2011 14:37 GMT
#783
hey guys, ive been searching the internet on how to keep your C program running until the user terminates it.

The idea is that my program is showing some results/output until the user terminates it.

I tried opening time.h and use

while((start_time / CLOCKS_PER_SEC * 1000) != 15)

doesnt work =/
LiquidDota StaffAre you ready for a Miracle-? We are! The International 2017 Champions!
KaiserJohan
Profile Joined May 2010
Sweden1808 Posts
Last Edited: 2011-03-03 15:23:38
March 03 2011 15:21 GMT
#784
Just keep a loop in your main that prevents the program from returning untill a condition is met

int main() {
not_done = 1;

while (not_done) {
.....
}
return 0;
}


Or poll for input or something. You are going to have to use some form of loop, just find a good loop condition and you are set.
England will fight to the last American
SpearThruster
Profile Joined March 2011
18 Posts
March 04 2011 04:29 GMT
#785
Okey guys, i have hit a wall here with my JavaScript code. I wanna force event bubbling on my site, in order to circumvent the onMouseDown() in favor for onClick() (button). I need some tips for an elegant solution please.

+ Show Spoiler +
<body onMouseDown="updateMouse()">
<P ID = "p1">This is a paragraph obviously. </P>
<input type="button" value="Start" onClick="startProcessing()">
<input type="button" value="End" onClick="showResult()">
</body>


Blisse
Profile Blog Joined July 2010
Canada3710 Posts
March 04 2011 04:49 GMT
#786
OKAY well I got 60/75 on the Junior Programs for the Canadian Computing Competition by Waterloo. Pretty good since I haven't done any programming in 8 or so months, and this was way more advanced than anything I've ever done. Couldn't for the life of me think of a solution to the last question though, worth the remaining 15 marks.
There is no one like you in the universe.
Craton
Profile Blog Joined December 2009
United States17303 Posts
March 04 2011 05:20 GMT
#787
And you're not going to tell us said question?
twitch.tv/cratonz
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
March 04 2011 05:26 GMT
#788
On March 04 2011 14:20 Craton wrote:
And you're not going to tell us said question?


LOL well it had something to do with finding out the number of ways you can remove people in a friends list if you can't remove yourself, or people that your friends invited if the maximum list size is 6. I was hoping to look at the question again tomorrow and get back to you (guys). :3

From what I recall, you are given an integer, n, from 1-6 where the highest number is the user (deleter). Then you are given n-1 numbers telling you who invited who into the list.

So if you are given

3
3
3

Then there are three people, the user is the third, and friend one and friend two were both invited by the user (three). I'll try to find the whole question, but where would I start in solving that?
There is no one like you in the universe.
Zocat
Profile Joined April 2010
Germany2229 Posts
Last Edited: 2011-03-08 15:36:22
March 08 2011 15:35 GMT
#789
On March 04 2011 14:26 Blisse wrote:
Show nested quote +
On March 04 2011 14:20 Craton wrote:
And you're not going to tell us said question?


LOL well it had something to do with finding out the number of ways you can remove people in a friends list if you can't remove yourself, or people that your friends invited if the maximum list size is 6. I was hoping to look at the question again tomorrow and get back to you (guys). :3

From what I recall, you are given an integer, n, from 1-6 where the highest number is the user (deleter). Then you are given n-1 numbers telling you who invited who into the list.

So if you are given

3
3
3

Then there are three people, the user is the third, and friend one and friend two were both invited by the user (three). I'll try to find the whole question, but where would I start in solving that?


Well, from what you told us:
If there are people on the list who you havent invited and arent friends of someone you invited you cannot remove those. They're therefor irrelevant.

I think you are able to remove people who were invited from your friends as soon as you remove the friend (or else the problem wouldnt make any sense. Just count the people you invited and it's basic combinatorics how many different ways are there to remove them).
So let's assume my thought is correct. Build a "tree" with yourself as the root. Then each chilldnode (of the root) is a person who you invited. Their children are the persons they invited.
Now count how many different ways you can find which visits all edges of the tree.


AoN.DimSum
Profile Blog Joined September 2008
United States2983 Posts
March 09 2011 17:05 GMT
#790
Hi, does anyone know how to break a video into frames using java? I used MATLAB to write a little program for playing a video in reverse. I have relatively no knowledge of java, since MATLAB has the functions programmed in so I didn't need to learn any programming. I now need to convert it to java and I dont have a clue where to start. It would be great if anyone can point me in the right direction! thanks
by my idol krokkis : "U better hope Finland wont have WCG next year and that I wont gain shitloads of skill, cause then I will wash ur mouth with soap, little man."
Phunkapotamus
Profile Joined April 2010
United States496 Posts
March 09 2011 18:01 GMT
#791
On March 10 2011 02:05 AoN.DimSum wrote:
Hi, does anyone know how to break a video into frames using java? I used MATLAB to write a little program for playing a video in reverse. I have relatively no knowledge of java, since MATLAB has the functions programmed in so I didn't need to learn any programming. I now need to convert it to java and I dont have a clue where to start. It would be great if anyone can point me in the right direction! thanks


It depends on the video format for how you would convert a frame's data into an image. I would try and find some open source video decoder that can support multiple video formats. Chances are it will convert the video's frames into a common renderable surface. Then you can choose to grab that data and convert it to the image format of your choice.

"Do a barrel roll"
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
March 12 2011 09:04 GMT
#792
On March 09 2011 00:35 Zocat wrote:
Show nested quote +
On March 04 2011 14:26 Blisse wrote:
On March 04 2011 14:20 Craton wrote:
And you're not going to tell us said question?


LOL well it had something to do with finding out the number of ways you can remove people in a friends list if you can't remove yourself, or people that your friends invited if the maximum list size is 6. I was hoping to look at the question again tomorrow and get back to you (guys). :3

From what I recall, you are given an integer, n, from 1-6 where the highest number is the user (deleter). Then you are given n-1 numbers telling you who invited who into the list.

So if you are given

3
3
3

Then there are three people, the user is the third, and friend one and friend two were both invited by the user (three). I'll try to find the whole question, but where would I start in solving that?


Well, from what you told us:
If there are people on the list who you havent invited and arent friends of someone you invited you cannot remove those. They're therefor irrelevant.

I think you are able to remove people who were invited from your friends as soon as you remove the friend (or else the problem wouldnt make any sense. Just count the people you invited and it's basic combinatorics how many different ways are there to remove them).
So let's assume my thought is correct. Build a "tree" with yourself as the root. Then each chilldnode (of the root) is a person who you invited. Their children are the persons they invited.
Now count how many different ways you can find which visits all edges of the tree.


Yes! That's the way I felt I should have went. Sadly, I have no idea how to build a tree. In any language other than written. Also have to subtract something too I feel because some options don't work? Ugh. At least I knew something about tree diagrams... stupid site won't show this year's questions/answers (answers are in java/c, so no help for python). I'm happy because 60/75 last year was rank 35 of the competitors. Pretty good imo for a novice.

On the other side, the senior competitors, only two people got above 60, one was on the dot, another got 72... yikes! I'm glad I only did the junior one.
There is no one like you in the universe.
djcube
Profile Blog Joined July 2009
United States985 Posts
March 13 2011 04:32 GMT
#793
Java question here:

For anyone familiar with the javax.sound packages, is it possible to capture internal audio data like from the Digital Audio (S/PDIF) device? I've found several examples of capturing audio data from a microphone, but can't find anything related to what I'm looking for, so I'm just wondering if it's possible with the javax.sound packages.
coZen
Profile Joined August 2010
United States192 Posts
March 16 2011 00:49 GMT
#794
C++ assistance:

If anybody would like to help me out on a programming assignment, I would greatly appreciate it. Im doing an intro to C++ course and I just cant get the grasp of this assignment.

The program:
Basically a conversion program that gets a metric input and converts it depending on what the user chooses. Its basically a couple of functions and switches. More details if anybody wishes to help me.
AoN.DimSum
Profile Blog Joined September 2008
United States2983 Posts
March 16 2011 02:02 GMT
#795
On March 10 2011 03:01 Phunkapotamus wrote:
Show nested quote +
On March 10 2011 02:05 AoN.DimSum wrote:
Hi, does anyone know how to break a video into frames using java? I used MATLAB to write a little program for playing a video in reverse. I have relatively no knowledge of java, since MATLAB has the functions programmed in so I didn't need to learn any programming. I now need to convert it to java and I dont have a clue where to start. It would be great if anyone can point me in the right direction! thanks


It depends on the video format for how you would convert a frame's data into an image. I would try and find some open source video decoder that can support multiple video formats. Chances are it will convert the video's frames into a common renderable surface. Then you can choose to grab that data and convert it to the image format of your choice.




thank you, I will play around with that.
by my idol krokkis : "U better hope Finland wont have WCG next year and that I wont gain shitloads of skill, cause then I will wash ur mouth with soap, little man."
Ace
Profile Blog Joined October 2002
United States16096 Posts
March 16 2011 02:05 GMT
#796
On March 16 2011 09:49 coZen wrote:
C++ assistance:

If anybody would like to help me out on a programming assignment, I would greatly appreciate it. Im doing an intro to C++ course and I just cant get the grasp of this assignment.

The program:
Basically a conversion program that gets a metric input and converts it depending on what the user chooses. Its basically a couple of functions and switches. More details if anybody wishes to help me.


What is the problem? An issue with the functions?
Math me up, scumboi. - Acrofales
Augury
Profile Blog Joined September 2008
United States758 Posts
Last Edited: 2011-03-16 02:09:02
March 16 2011 02:08 GMT
#797
On March 16 2011 09:49 coZen wrote:
C++ assistance:

If anybody would like to help me out on a programming assignment, I would greatly appreciate it. Im doing an intro to C++ course and I just cant get the grasp of this assignment.

The program:
Basically a conversion program that gets a metric input and converts it depending on what the user chooses. Its basically a couple of functions and switches. More details if anybody wishes to help me.


This should be pretty simple, just assign the user input for the value to a variable, then write a chain of if statements that check the value of the conversion field.

numericValue = userinputforvalue
conversionType = userinputforconversion

if inches then
output = numericValue * googledconvrate

else if pounds then
output = numericValue * google

else

etc. etc.

display output

Edit: not sure what you're struggling with, need more info tbh
EscPlan9
Profile Blog Joined December 2006
United States2777 Posts
March 16 2011 12:59 GMT
#798
For anyone struggling with an intro class, I think it's mostly because they don't have a programmer's mindset yet. You have to be able to think about what the big problem is, splice it up into smaller portions, and then map out what basically needs to be done for each part. I personally like to use comments to organize what needs to happen at the different areas before I go hardcore into the coding. Like for this case, it seems like this is the basic problem:

//obtain user input

//obtain conversion type

//calculate conversion

//display result
Undefeated TL Tecmo Super Bowl League Champion
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
March 16 2011 13:19 GMT
#799
On March 16 2011 21:59 EscPlan9 wrote:
For anyone struggling with an intro class, I think it's mostly because they don't have a programmer's mindset yet. You have to be able to think about what the big problem is, splice it up into smaller portions, and then map out what basically needs to be done for each part. I personally like to use comments to organize what needs to happen at the different areas before I go hardcore into the coding. Like for this case, it seems like this is the basic problem:

//obtain user input

//obtain conversion type

//calculate conversion

//display result


I usually recommend to just think about "how would i do this manually?". Write all steps down on a paper and program one step after the other. If the step is too big to be written in 3 lines of code, think about how to do this one step manually and refine it until you can write a single step of it in 3 lines. Repeat until code is finished. After that, care about optimizing, structure or the other - for beginners not important - aspects.

It's a good starting point, though very tedious. I prefer my "read/hear the problem - have complete code written out in your mind before the problem description is complete" mindset, but that takes ages of practical experience.
ATeddyBear
Profile Blog Joined December 2005
Canada2843 Posts
March 16 2011 13:29 GMT
#800
Any ASP.Net 4 users here?

I am building a web application where a user can search a database for a garbage item (which is associated with a ID) stored in a xls file. When they've selected one from a list, I access another list based on the ID of the item and display a description for which that ID belongs too, this description list is stored an a second sheet in the same xls file.

Problem I have is creating a database storing the data in the xls file and accessing it. I was told to either use SQL or Oracle, but I have never programmed on this platform or using any of those additional languages. Any help on where to get started would be greatly appreciated.
Professional twice over - an analyst and a therapist. The world’s first analrapist.
Prev 1 38 39 40 41 42 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
11:00
2026 Week 23
IntoTheiNu 1118
WardiTV677
RotterdaM477
TKL 165
Rex139
SteadfastSC112
CosmosSc2 48
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 477
TKL 165
ProTech140
Rex 139
SteadfastSC 112
CosmosSc2 48
StarCraft: Brood War
Bisu 2404
Horang2 1257
Shuttle 991
Soulkey 555
EffOrt 442
Soma 407
actioN 332
Light 292
Snow 257
Stork 208
[ Show more ]
Last 185
Larva 157
Rush 139
ZerO 136
Pusan 100
Zeus 81
hero 77
Sexy 76
910 68
Sea.KH 51
Hm[arnc] 29
ToSsGirL 27
Trap 26
Barracks 26
Sharp 19
soO 18
Terrorterran 16
Shine 14
HiyA 12
scan(afreeca) 10
sorry 10
Icarus 7
Noble 6
Britney 0
Dota 2
qojqva1766
Dendi1045
Counter-Strike
byalli3397
markeloff172
edward72
Super Smash Bros
Mew2King45
Other Games
singsing2237
olofmeister1220
B2W.Neo908
hiko739
Lowko422
DeMusliM191
Liquid`VortiX148
Hui .131
ArmadaUGS70
ZerO(Twitch)9
KnowMe6
Organizations
Other Games
gamesdonequick821
BasetradeTV45
[ Show 12 non-featured ]
StarCraft 2
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV251
League of Legends
• Jankos2330
• Nemesis1375
• TFBlade1052
Upcoming Events
Replay Cast
9h 50m
IntoTheTV X SOOP
20h 50m
Cure vs SHIN
herO vs Solar
Percival vs Classic
ByuN vs Rogue
OSC
1d 7h
Replay Cast
1d 9h
IntoTheTV X SOOP
1d 20h
Replay Cast
2 days
GSL
2 days
Replay Cast
3 days
GSL
3 days
Shopify Rebellion Sundays
4 days
Spirit vs Mixu
[ Show More ]
Replay Cast
4 days
Afreeca Starleague
4 days
Shine vs Rush
WardiTV Weekly
4 days
Monday Night Weeklies
5 days
Sparkling Tuna Cup
5 days
Afreeca Starleague
5 days
Light vs EffOrt
PiGosaur Cup
6 days
Kung Fu Cup
6 days
Liquipedia Results

Completed

Acropolis #5 - TRS
Blizzard Classic Cup 2026
Big Dog Cup 2026 Div 1

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Calamity Invitational
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Acropolis #5 - GSA
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Copium Cup
PGL Major Singapore 2026
Stake Ranked Episode 6
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
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.