blah blah blah is here! blah blah » Close

0
votes
2 answers

How do I set a negative number to index of array in C# ?

Hello everybody, I'm newbie in C#, and I've been doing algorithm about Shell Sort in C#. This is my code [CODE] static void shellSort(int[] group, int[] h) { int step, i, j, x, len, n, k; n = gro ...

0
votes
1 answers

Optimized algorithm runs slower than original

I'm writing a fractal explorer app. The original mandelbrot test func is: [code] public static Complex MandelbrotTest(Complex C) { int iter = 0; double CI = C.Imag; double tr; ...

0
votes
1 answers

Need help with a algorithm

Hi all. I'm making a school work here and I'm stuck and need some help from you guys. This is a console application I'm working on. I need to enter 8 salesmen with socialnr city and how much they sold this month. After that it needs to ...

Feedback