• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 16:02
CET 22:02
KST 06:02
  • 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 - Playoffs Preview0RSL 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
Community News
Weekly Cups (Nov 24-30): MaxPax, Clem, herO win1BGE Stara Zagora 2026 announced14[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13
StarCraft 2
General
SC2 Proleague Discontinued; SKT, KT, SGK, CJ disband Weekly Cups (Nov 24-30): MaxPax, Clem, herO win BGE Stara Zagora 2026 announced Information Request Regarding Chinese Ladder SC: Evo Complete - Ranked Ladder OPEN ALPHA
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest RSL Revival: Season 3 Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 502 Negative Reinforcement Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation
Brood War
General
Which season is the best in ASL? BGH Auto Balance -> http://bghmmr.eu/ FlaSh's Valkyrie Copium BW General Discussion A cwal.gg Extension - Easily keep track of anyone
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Nintendo Switch Thread Stormgate/Frost Giant Megathread Should offensive tower rushing be viable in RTS games? The Perfect Game 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
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread US Politics Mega-thread The Big Programming Thread Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
Formula 1 Discussion 2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1204 users

The Big Programming Thread - Page 592

Forum Index > General Forum
Post a Reply
Prev 1 590 591 592 593 594 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.
Prillan
Profile Joined August 2011
Sweden350 Posts
February 22 2015 18:08 GMT
#11821
Just for fun I implemented it in Haskell:
sort []  = []
sort [x] = [x]
sort l = merge (sort $ take halfLength l) (sort $ drop halfLength l)
where halfLength = length l `div` 2

merge a1 [] = a1
merge [] a2 = a2
merge (x:a1) (y:a2)
| x >= y = y:(merge (x:a1) a2 )
| x < y = x:(merge a1 (y:a2))
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Ropid
Profile Joined March 2009
Germany3557 Posts
February 22 2015 19:14 GMT
#11822
There's a 'splitAt' that outputs a (,), and what's neat is Haskell understands (,) on the left side of a '=', so this works:

sort [] = []
sort [x] = [x]
sort l = merge (sort a) (sort b)
where (a,b) = splitAt (length l `div` 2) l
"My goal is to replace my soul with coffee and become immortal."
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
February 22 2015 19:32 GMT
#11823
I have a question for you guys. For a course on algorythms and data structures in java we have to run an experiment on memory usage of linked lists. My output is as follows. A singy linked list of size 10 used about 7 kilobytes, and a singly linked list of size 10000 used about 400 kilobytes. Clearly this is not linear space complexity, yet the space complexity of a linked list is supposed to be O(n). Does anyone have an idea of what is going on?

Another interesting tidbit. There seems to be no difference in size between a singly linked list of size 10000 and a doubly linked list of size 10000 (both about 400 KB), yet the doubly linked list obviously stores an extra pointer for each node. Why isnt this showing up in the test results?
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2015-02-22 19:41:43
February 22 2015 19:41 GMT
#11824
--- Nuked ---
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
February 22 2015 19:49 GMT
#11825
On February 23 2015 04:41 Nesserev wrote:
Show nested quote +
On February 23 2015 04:32 solidbebe wrote:
I have a question for you guys. For a course on algorythms and data structures in java we have to run an experiment on memory usage of linked lists. My output is as follows. A singy linked list of size 10 used about 7 kilobytes, and a singly linked list of size 10000 used about 400 kilobytes. Clearly this is not linear space complexity, yet the space complexity of a linked list is supposed to be O(n). Does anyone have an idea of what is going on?

Another interesting tidbit. There seems to be no difference in size between a singly linked list of size 10000 and a doubly linked list of size 10000 (both about 400 KB), yet the doubly linked list obviously stores an extra pointer for each node. Why isnt this showing up in the test results?

Well, something could be wrong with your implementation ... or, it could be Java. It's probably Java. I'm pretty sure it's Java. It's Java.

Yeah the implementation was actually given to us by the teacher so I doubt its that . I get what theyre trying to make us see, but really trying to produce the 'desired' results on your own machine with java seems to be impossible. With the java garbage collector and all the other behind the scenes magic in the compiler and such.
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Ropid
Profile Joined March 2009
Germany3557 Posts
Last Edited: 2015-02-22 20:09:21
February 22 2015 20:03 GMT
#11826
On February 23 2015 04:41 Nesserev wrote:
Show nested quote +
On February 23 2015 04:32 solidbebe wrote:
I have a question for you guys. For a course on algorythms and data structures in java we have to run an experiment on memory usage of linked lists. My output is as follows. A singy linked list of size 10 used about 7 kilobytes, and a singly linked list of size 10000 used about 400 kilobytes. Clearly this is not linear space complexity, yet the space complexity of a linked list is supposed to be O(n). Does anyone have an idea of what is going on?

Another interesting tidbit. There seems to be no difference in size between a singly linked list of size 10000 and a doubly linked list of size 10000 (both about 400 KB), yet the doubly linked list obviously stores an extra pointer for each node. Why isnt this showing up in the test results?

Well, something could be wrong with your implementation ... or, it could be Java. It's probably Java. I'm pretty sure it's Java. It's Java.

The same happens in C/C++.

There's rules for the alignment of the various data types. Things that are 4 byte sized have to start at 4 bytes boundaries, 1 byte at 1 byte, 8 byte at 8 bytes, etc. If you group one char or two chars or three chars etc. in one struct, the whole struct will snap to 8 bytes size by adding empty space after the chars.

In Java, the references are 4 bytes size it seems. In the single-linked list, there's then one reference and one empty 4 byte space. The doubly-linked list has two references and no empty space.
"My goal is to replace my soul with coffee and become immortal."
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2015-02-22 20:21:19
February 22 2015 20:16 GMT
#11827
On February 23 2015 04:32 solidbebe wrote:
I have a question for you guys. For a course on algorythms and data structures in java we have to run an experiment on memory usage of linked lists. My output is as follows. A singy linked list of size 10 used about 7 kilobytes, and a singly linked list of size 10000 used about 400 kilobytes. Clearly this is not linear space complexity, yet the space complexity of a linked list is supposed to be O(n). Does anyone have an idea of what is going on?

Another interesting tidbit. There seems to be no difference in size between a singly linked list of size 10000 and a doubly linked list of size 10000 (both about 400 KB), yet the doubly linked list obviously stores an extra pointer for each node. Why isnt this showing up in the test results?

What exactly is in those lists? 7 kb for 10 items seems quite generous. That's 700 bytes per item. Subtract a couple of pointers and you're still well beyond 600 bytes. If your items are 600 bytes each, having one pointer more or less really doesn't matter a whole lot, so that would hardly be a useful analysis.

Also, even a linked list can be implemented with an array holding the list elements. And such an array would usually be doubled in size once it runs out of unused elements. So if it is implemented in that way, you usually wouldn't see a difference in size unless you increase the number of items beyond the next power of 2.

Furthermore, there's also the issue of how you're measuring the size. Depending on the language, there can be more or less accurate methods. Sometimes you could be measuring extra space because of memory fragmentation and what not.
If you have a good reason to disagree with the above, please tell me. Thank you.
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
February 22 2015 20:25 GMT
#11828
On February 23 2015 05:16 spinesheath wrote:
Show nested quote +
On February 23 2015 04:32 solidbebe wrote:
I have a question for you guys. For a course on algorythms and data structures in java we have to run an experiment on memory usage of linked lists. My output is as follows. A singy linked list of size 10 used about 7 kilobytes, and a singly linked list of size 10000 used about 400 kilobytes. Clearly this is not linear space complexity, yet the space complexity of a linked list is supposed to be O(n). Does anyone have an idea of what is going on?

Another interesting tidbit. There seems to be no difference in size between a singly linked list of size 10000 and a doubly linked list of size 10000 (both about 400 KB), yet the doubly linked list obviously stores an extra pointer for each node. Why isnt this showing up in the test results?

What exactly is in those lists? 7 kb for 10 items seems quite generous. That's 700 bytes per item. Subtract a couple of pointers and you're still well beyond 600 bytes. If your items are 600 bytes each, having one pointer more or less really doesn't matter a whole lot, so that would hardly be a useful analysis.

Also, even a linked list can be implemented with an array holding the list elements. And such an array would usually be doubled in size once it runs out of unused elements. So if it is implemented in that way, you usually wouldn't see a difference in size unless you increase the number of items beyond the next power of 2.

Furthermore, there's also the issue of how you're measuring the size. Depending on the language, there can be more or less accurate methods. Sometimes you could be measuring extra space because of memory fragmentation and what not.

Youre right actually. These lists store integers so the size is way off. The memory is calculated just subtracting the runtime free memory from the runtime totalmemory. A lot of those KBs are not the lists. Then again it keeps producing the same results, so memory thats not the list should be about the same every time as well.
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
February 22 2015 20:46 GMT
#11829
On February 23 2015 05:25 solidbebe wrote:
Show nested quote +
On February 23 2015 05:16 spinesheath wrote:
On February 23 2015 04:32 solidbebe wrote:
I have a question for you guys. For a course on algorythms and data structures in java we have to run an experiment on memory usage of linked lists. My output is as follows. A singy linked list of size 10 used about 7 kilobytes, and a singly linked list of size 10000 used about 400 kilobytes. Clearly this is not linear space complexity, yet the space complexity of a linked list is supposed to be O(n). Does anyone have an idea of what is going on?

Another interesting tidbit. There seems to be no difference in size between a singly linked list of size 10000 and a doubly linked list of size 10000 (both about 400 KB), yet the doubly linked list obviously stores an extra pointer for each node. Why isnt this showing up in the test results?

What exactly is in those lists? 7 kb for 10 items seems quite generous. That's 700 bytes per item. Subtract a couple of pointers and you're still well beyond 600 bytes. If your items are 600 bytes each, having one pointer more or less really doesn't matter a whole lot, so that would hardly be a useful analysis.

Also, even a linked list can be implemented with an array holding the list elements. And such an array would usually be doubled in size once it runs out of unused elements. So if it is implemented in that way, you usually wouldn't see a difference in size unless you increase the number of items beyond the next power of 2.

Furthermore, there's also the issue of how you're measuring the size. Depending on the language, there can be more or less accurate methods. Sometimes you could be measuring extra space because of memory fragmentation and what not.

Youre right actually. These lists store integers so the size is way off. The memory is calculated just subtracting the runtime free memory from the runtime totalmemory. A lot of those KBs are not the lists. Then again it keeps producing the same results, so memory thats not the list should be about the same every time as well.

That method of measuring memory probably is quite inaccurate due to memory fragmentation and other factors. I don't know how the runtime free/total memory are calculated in detail, but my guess is it really is only an estimate.
If you have a good reason to disagree with the above, please tell me. Thank you.
windzor
Profile Joined October 2010
Denmark1013 Posts
February 22 2015 21:42 GMT
#11830
On February 23 2015 04:32 solidbebe wrote:
I have a question for you guys. For a course on algorythms and data structures in java we have to run an experiment on memory usage of linked lists. My output is as follows. A singy linked list of size 10 used about 7 kilobytes, and a singly linked list of size 10000 used about 400 kilobytes. Clearly this is not linear space complexity, yet the space complexity of a linked list is supposed to be O(n). Does anyone have an idea of what is going on?

Another interesting tidbit. There seems to be no difference in size between a singly linked list of size 10000 and a doubly linked list of size 10000 (both about 400 KB), yet the doubly linked list obviously stores an extra pointer for each node. Why isnt this showing up in the test results?


First of, it is impossible to measure memory consumption of data structures in java. With the way garbage collection works, you cannot do any trustworthy measurements which you can base any conclussion on, I've tried.

But, if you want to make any conclussion, first of you need more than two measurements. 7 kB to 400 kB is always linear. The memory consumption of the JVM is just 7 kB then... You are remembering to enforce GC like 10 times before printing the memory usage?

For the double linked vs single linked lists, 10000 pointers are is approximatly the size og 10 kB. With 400 kB and java this is within the error margin of +-90%

Furtmorefor memory usage bigger is better. You need more than 10,000 objects to measure anything. You need like 1,000,000 objects if you want to have anything realistic. Remember each pointer is about 4-8 bytes so with 1,000,0000 objects the links will only be around 4 MB which is not alot.

Yeah
tofucake
Profile Blog Joined October 2009
Hyrule19167 Posts
Last Edited: 2015-02-22 22:00:36
February 22 2015 22:00 GMT
#11831
I love these dances, they show spring algorithms in a neat way that makes them ready to understand:
Liquipediaasante sana squash banana
nunez
Profile Blog Joined February 2011
Norway4003 Posts
February 22 2015 22:06 GMT
#11832
wunderbar!
conspired against by a confederacy of dunces.
solidbebe
Profile Blog Joined November 2010
Netherlands4921 Posts
February 22 2015 23:11 GMT
#11833
Thanks for all the replies everybody! The more I read the more I realise the premise of this experiment is a bit silly, and the given implementation a bit lackluster at that. Ill try to make of it what I can
That's the 2nd time in a week I've seen someone sig a quote from this GD and I have never witnessed a sig quote happen in my TL history ever before. -Najda
Prillan
Profile Joined August 2011
Sweden350 Posts
February 23 2015 06:09 GMT
#11834
On February 23 2015 04:14 Ropid wrote:
There's a 'splitAt' that outputs a (,), and what's neat is Haskell understands (,) on the left side of a '=', so this works:

sort [] = []
sort [x] = [x]
sort l = merge (sort a) (sort b)
where (a,b) = splitAt (length l `div` 2) l

Nice, forgot about that one.
TheBB's sidekick, aligulac.com | "Reality is frequently inaccurate." - Douglas Adams
Manit0u
Profile Blog Joined August 2004
Poland17488 Posts
Last Edited: 2015-02-23 08:40:21
February 23 2015 08:10 GMT
#11835
On February 23 2015 15:09 Prillan wrote:
Show nested quote +
On February 23 2015 04:14 Ropid wrote:
There's a 'splitAt' that outputs a (,), and what's neat is Haskell understands (,) on the left side of a '=', so this works:

sort [] = []
sort [x] = [x]
sort l = merge (sort a) (sort b)
where (a,b) = splitAt (length l `div` 2) l

Nice, forgot about that one.


PHP to the rescue


$arr = [ 8, 0, 7, 2, 1, 3, 5, 9, 6, 4 ];

sort($arr);

print_r($arr);

/* output */
Array
(
[0] => 0
[1] => 1
[2] => 2
[3] => 3
[4] => 4
[5] => 5
[6] => 6
[7] => 7
[8] => 8
[9] => 9
)


I know it's not the same... Here's a full merge-sort:


/* props to Tobias Baldauf for this */

$data = [ 8, 0, 7, 2, 1, 3, 5, 9, 6, 4 ];

function mergesort($data) {
if (count($data) > 1) {
$data_middle = round(count($data)/2, 0, PHP_ROUND_HALF_DOWN);

$data_left = mergesort(array_slice($data, 0, $data_middle));
$data_right = mergesort(array_slice($data, $data_middle, count($data)));

$counter_left = $counter_right = 0;

for ($i = 0; $i < count($data); ++$i) {
if($counter_left === count($data_left)) {
$data[$i] = $data_right[$counter_right];

++$counter_right;
} elseif (($counter_right === count($data_right)) || ($data_left[$counter_left] < $data_right[$counter_right])) {
$data[$i] = $data_left[$counter_left];

++$counter_left;
} else {
$data[$i] = $data_right[$counter_right];

++$counter_right;
}
}
}

return $data;
}

$data = mergesort($data);

print_r($data);
Time is precious. Waste it wisely.
Khalum
Profile Joined September 2010
Austria831 Posts
February 23 2015 09:12 GMT
#11836
I like the SML version from http://www.codecodex.com/wiki/Merge_sort


fun mergesort [] = []
| mergesort [x] = [x]
| mergesort lst =
let fun merge ([],ys) = ys (*merges two sorted lists to form a sorted list *)
| merge (xs,[]) = xs
| merge (x::xs,y::ys) =
if x<y then
x::merge (xs,y::ys)
else
y::merge (x::xs,ys)
;
val half = length(lst) div 2;
in
merge (mergesort (List.take (lst, half)),mergesort (List.drop (lst, half)))
end
;
nunez
Profile Blog Joined February 2011
Norway4003 Posts
Last Edited: 2015-02-23 16:09:09
February 23 2015 16:05 GMT
#11837
wild stab at template metaprogram version (sorts a sequence of types by size):

+ Show Spoiler [preamble] +
#include<iostream>
#include<seq/seq.hpp>
#include<jeh/select_if.hpp>

using namespace seq;

+ Show Spoiler [merge] +
namespace detail
{

template<class lhs,class rhs,class out=sequence<>,class=void>
struct
merge_impl;

template<class lhs,class rhs,class out>
struct
merge_impl<
lhs,rhs,out,
select_if<
sizeof(first<lhs>)<=sizeof(first<rhs>) and
not empty<lhs>() and
not empty<rhs>()
>
>:merge_impl<
remove_first<lhs>,rhs,insert_last<out,first<lhs>>
>
{};

template<class lhs,class rhs,class out>
struct
merge_impl<
lhs,rhs,out,
select_if<
not (sizeof(first<lhs>)<=sizeof(first<rhs>)) and
not empty<lhs>() and
not empty<rhs>()
>
>:merge_impl<
lhs,remove_first<rhs>,insert_last<out,first<rhs>>
>
{};

template<class lhs,class rhs,class out>
struct
merge_impl<
lhs,rhs,out,
select_if<empty<lhs>()>
>
{ using output=concat<out,rhs>; };

template<class lhs,class rhs,class out>
struct
merge_impl<
lhs,rhs,out,
select_if<empty<rhs>()>
>
{ using output=concat<out,lhs>; };

}

template<class lhs,class rhs>
using merge=typename detail::merge_impl<lhs,rhs>::output;

+ Show Spoiler [merge sort] +
namespace detail{

template<class in,class=void>
struct
merge_sort_impl;

template<class in>
struct
merge_sort_impl<in,select_if<count<in>()<=1>>
{ using output=in; };

template<class in>
struct
merge_sort_impl<in,select_if<not (count<in>()<=1)>>
{
using output=
merge<
typename merge_sort_impl<sub_seq<in,0,(count<in>()>>1)>>::output,
typename merge_sort_impl<sub_seq<in,(count<in>()>>1),count<in>()>>::output
>;
};

}

template<class... type>
using merge_sort=typename detail::merge_sort_impl<sequence<type...>>::output;

+ Show Spoiler [compile time invocation] +
using in=sequence<int[3],int[5],int[2],int[1]>;
using out=merge_sort<in>;

int
main()
{
std::cout<<out()<<std::endl;
}

+ Show Spoiler [run time print] +
[jeh@gimli tl2]$ make
g++ -c -std=c++14 -I. -I../ -fdiagnostics-color -Wfatal-errors tl.cpp
g++ -o tl tl.o
[jeh@gimli tl2]$ ./tl
{

int [1]
int [2]
int [3]
int [5]

}
conspired against by a confederacy of dunces.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
February 23 2015 17:37 GMT
#11838
if I used serialization to save data from my program to a file, will that file be readable/editable in some way that would allow users to manipulate the saved states? because I don't want that.

do I specifically need to find a way to save my files as encrypted to avoid it?
windzor
Profile Joined October 2010
Denmark1013 Posts
February 23 2015 17:46 GMT
#11839
On February 24 2015 02:37 travis wrote:
if I used serialization to save data from my program to a file, will that file be readable/editable in some way that would allow users to manipulate the saved states? because I don't want that.

do I specifically need to find a way to save my files as encrypted to avoid it?


If the user have access rights to edit the file he can do it. There is nothing you can do about that.

What you can do is create a checksum of the file and use that to detect if the user has changed the file. If so, you can yell at the user and say to stop editing that file.
Yeah
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
February 23 2015 18:26 GMT
#11840
nunez, is there a reason you name your libraries seq and jeh?
There is no one like you in the universe.
Prev 1 590 591 592 593 594 1032 Next
Please log in or register to reply.
Live Events Refresh
StarCraft2.fi
17:00
15V Cup / Groups Day 1
Fuzer 318
Reevou 28
Liquipedia
Monday Night Weeklies
17:00
#32
Clem vs MaxPaxLIVE!
RotterdaM1149
TKL 547
IndyStarCraft 273
SteadfastSC226
kabyraGe 153
BRAT_OK 117
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 1149
Clem_sc2 550
TKL 547
Fuzer 318
IndyStarCraft 273
SteadfastSC 226
BRAT_OK 117
JuggernautJason73
StarCraft: Brood War
Shuttle 507
Dota 2
Gorgc6912
Counter-Strike
fl0m5264
minikerr8
Super Smash Bros
Chillindude0
Heroes of the Storm
Liquid`Hasu661
Other Games
Grubby5238
FrodaN1317
Beastyqt1079
shahzam322
C9.Mang0150
ArmadaUGS135
Mew2King77
Livibee75
Trikslyr75
NarutO 33
ZombieGrub33
Organizations
Other Games
BasetradeTV30
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• StrangeGG 10
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• Kozan
• IndyKCrew
StarCraft: Brood War
• 80smullet 31
• FirePhoenix19
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21456
• WagamamaTV423
League of Legends
• Nemesis2708
• TFBlade1102
Other Games
• imaqtpie1357
• Shiphtur335
Upcoming Events
Replay Cast
2h 58m
Wardi Open
14h 58m
StarCraft2.fi
19h 58m
PiGosaur Monday
1d 3h
Wardi Open
1d 14h
StarCraft2.fi
1d 19h
Replay Cast
2 days
The PondCast
2 days
Replay Cast
3 days
Korean StarCraft League
4 days
[ Show More ]
CranKy Ducklings
4 days
SC Evo League
4 days
BSL 21
4 days
Sziky vs OyAji
Gypsy vs eOnzErG
Sparkling Tuna Cup
5 days
BSL 21
5 days
Bonyth vs StRyKeR
Tarson vs Dandy
Replay Cast
6 days
Wardi Open
6 days
StarCraft2.fi
6 days
Liquipedia Results

Completed

Proleague 2025-11-28
RSL Revival: Season 3
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
Acropolis #4 - TS3
META Madness #9
Light HT
SL Budapest Major 2025
ESL Impact League Season 8
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

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
Kuram Kup
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual
eXTREMESLAND 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.