English 中文(简体)
C# - 找到最短路径图
原标题:C# - Shortest path map finding
  • 时间:2010-03-29 00:20:55
  •  标签:
  • c#

我不想试图在C#中写一个简单的方案,就像地图调查结果。

I ve a picture of city / or district ( it s const ) and I ll add a database to this program to store variables, points. I ll use the Floyd-Warshall algorithm to find the shortest path and I ll draw the path in the image (by coordinates, I think). This is the first time I ve written a real program in C# so how should I implement this one. ;)

非常感谢阅读!

问题回答

如果我是在概念证明之后,我就下载了Microsoft的自由视觉C号2008年快车版,装上简单的表格并贴上照片箱,把图像描绘到你经常的照片上,把Dock财产带给Fill,然后将一些代码放在油漆活动中:

private void pictureBox1_Paint(object sender, PaintEventArgs e)
{
    e.Graphics.DrawLine(new Pen(Color.Red), new Point(0, 0), new Point(100, 200));
}

Et voila! 一条红线。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签