Schelling's Segregation Model simulation Programming Software Development by fulyaoner … a way about this confusion. Which way can be the sortest? I run this code in mingw developer studio, known as… Re: Panels, different kinds, and how they work together. Programming Software Development by peter_budo … void buildGUI() { setupIndexPanel(); setupDestinationPanel(); setupOptPanel(); setupProcessPanel(); setupProgressPanel(); setupRenameLayout(); } ======================================= // Sortest example public void setupProgressPanel() { panelProgress = new JPanel(); Dimension… Re: A86 draw shape Programming Software Development by wildgoose …] Step on the longest axis and error correct on the sortest axis. Simple Binary math, and no wierd stepping logic. If… Re: select first process arrived, sjf in scheduling process Programming Software Development by Ancient Dragon …, just get it as previously posted. cout << "Sortest Arrival Time: " << p[smallest_arrivalTime_index].arrivalTime <<… Re: select first process arrived, sjf in scheduling process Programming Software Development by empror9 …; "Arrival" << endl; cout << "Sortest Arrival Time: " << p[smallest_arrivalTime_index].arrivalTime <<… Re: select first process arrived, sjf in scheduling process Programming Software Development by Ancient Dragon …; "Arrival" << endl; cout << "Sortest Arrival Time: " << p[smallest_arrivalTime_index].arrivalTime <<… Tutorial about sortest path in graph. Programming Software Development by Gà_1 These programs are not perfect and very coarcenes but I think it understandable for who are new to learning Graph Theory. I will point directly each problem by using example code. Any questions or idea please post here. Thank you. Here are my programs, we will start with a basic problem: **1) Depth-first Search (DFS) without using marking array… Re: Tutorial about sortest path in graph. Programming Software Development by SalmiSoft Good to see some activity here, so thumbs up for posting this. Should it be under Tutorials? One suggestion I would make is to use more meaningful variable names. The code would be much easier to scan and you would not need comments to explain what your variables are for. Rather than: n,s,e:byte; //n: number of vertices, s: start vertex, e: … Re: Schelling's Segregation Model simulation Programming Software Development by iamthwee Looks like the game of life, of some sort. Personally, I'd say you're over complicating this with linked list. Basic arrays is all you need. Re: Schelling's Segregation Model simulation Programming Software Development by fulyaoner [quote=iamthwee;331348]Looks like the game of life, of some sort. Personally, I'd say you're over complicating this with linked list. Basic arrays is all you need.[/quote] sure an array is enouhg but, this is what is wanted. Thanks