-1
votes
0answers
51 views

Finding the largest checkers-like structure in a 10x10 randomly generated array [closed]

Im trying to write a program in C that creates a 10x10 array of randomly generated 1's and 0's, finding the size of the largest 'checkers-like structure'. What I mean by 'checkers-like structure' ...
0
votes
0answers
29 views

How to scan a grid from closest to furthest?

I'm creating a simple game in "C" (not C++) that has a grid. on this grid the "unit" has a attack range. I'm looking for a better way to scan the grid spaces with-in the range of the unit closest to ...
1
vote
2answers
106 views

Two dimensional grid graph implementation

I want to implement two dimensional grid graph in C. Is it better to start with a single node and continue adding nodes when it is required or forming it one at a time? Code snippet would be great.
0
votes
2answers
58 views

How to put a widget into any column inside a grid?

I'm writing by hand an application that use Gtk+. I'm using a GtkGrid to hold my GtkWidgets, but I can't put a GtkWidget into specific colum, as the second parameter of gtk_grid_attach() function ...
0
votes
0answers
40 views

Cellwriter Project

I am doing a project involving this software http://risujin.org/cellwriter/ . It is a grid based handwriting recognition software. My project is in Devanagari script to combine the consonants and ...
3
votes
5answers
813 views

Implementing Geometric Median

When I google for Geometric median, I got this link Geometric median but I have no clue how to implement it in C . I am not very good at understanding this Mathematical Explanation. Lets Say I have 11 ...
1
vote
3answers
563 views

Creating a grid in c

I need to create a 375 x 375 grid in c, and I need to create a grid of 25 (5x5) poles that will be spaced 75 (375/5) grid points apart. I will then need to calculate for any given grid point how close ...
0
votes
4answers
244 views

C Grid using pointers and Malloc

I am Trying to work through some class examples and have gotten stuck on the following: The array grid should have length width with each entry representing a column of cells. Columns that have some ...
1
vote
3answers
385 views

Help on printing a 8x8 grid in C

I need help printing a 8x8 grid in C. A typical 1x1 grid is supposed to look like this: +----+ | | | | | | +----+ But I'm not getting that even though I checked everything that would be ...
0
votes
2answers
579 views

Find ALL paths in a grid between 2 nodes

I'm trying to find all the paths between 2 nodes in a grid, and the path has to go through all the node from start to end. Example (Start = S, End = E) 0 0 0 0 S 0 0 0 E The answer for the above ...
0
votes
0answers
325 views

function to traverse on a 5*5 grid in lowest no. of turns in C

I am actually doing coding for a grid solver in C. Now i have defined a function called void get_target(void){} which has to set the target_x and target_y coordinates to a value on 5*5 coordinate ...