-
这个继续是sap学习资料,提供给大家
这个继续是sap学习资料,提供给大家-This continues to sap learning materials provided to the U.S.
- 2022-04-07 21:43:13下载
- 积分:1
-
C A D 的 电 子 教 案!应该很多人会需要吧
C A D 的 电 子 教 案!应该很多人会需要吧-CAD of electronic lesson plans! Should be a lot of people will need it
- 2022-08-03 14:36:08下载
- 积分:1
-
关于滤波器的一些源程序,里面有详细的说明
关于滤波器的一些源程序,里面有详细的说明-On a number of source filters, which is described in detail
- 2022-01-26 02:10:46下载
- 积分:1
-
Create a storage structure of a given graph from the adjacency list and adjacenc...
1 创建给定图的存储结构,从邻接表和邻接矩阵两种存储方式中选择一种。
2 对所创建的图进行深度和广度优先搜索遍历,给出遍历过程中的顶点序列。
3 求图的最小生成树,按构造顺序输出边的序列。(两种方法都要求!)
3 编写一个主函数,将上面函数连在一起,构成一个完整程序。
4 将实验源程序调试并运行。
-Create a storage structure of a given graph from the adjacency list and adjacency matrix are two ways to choose a store. Two pairs of maps created by the depth and breadth-first search traversal, given the culmination of the process of traversal sequence. 3 order to map the minimum spanning tree, according to the order of the output side of the sequence structure. (Both methods require!) 3 to prepare a main function, the above function together to form a complete program. 4 source debugging and running the experiment.
- 2022-04-16 10:47:00下载
- 积分:1
-
mega8的控制LED走马灯程序,利用ICCAVR编译c程序
mega8的控制LED走马灯程序,利用ICCAVR编译c程序-LED lantern mega8 control procedures, the use of ICCAVR compile c program
- 2022-07-18 08:00:29下载
- 积分:1
-
Using vb to write idioms Lianliankan games, entertainment, plus study.
用vb写的成语连连看小游戏,娱乐加学习。-Using vb to write idioms Lianliankan games, entertainment, plus study.
- 2022-11-23 23:20:03下载
- 积分:1
-
关于键盘使用的经典代码
关于键盘使用的经典代码-use of the classic keyboard code
- 2022-12-12 14:10:04下载
- 积分:1
-
Visual C# 隐藏、显示开始按钮
C# 隐藏、显示开始按钮,把Windows的开始菜单隐藏起来,看不到“开始”菜单了,Windows7则隐藏了窗口图标,不过这样会很不方便哦,本源码只是学习C#与Windows之间的相关编程技巧,下面的代码实现了隐藏显示开始菜单的功能:
[DllImport("user32.dll")]//寻找窗口列表中第一个符合指定条件的顶级窗口
public static extern int FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll")]//在窗口列表中寻找与指定条件相符的第一个子窗口
public static extern int FindWindowEx(int hWnd1, int hWnd2, string lpsz1, string lpsz2);
[DllImport("user32.dll")]//控制窗口的可见性
public static extern int ShowWindow(int hwnd, int nCmdShow);
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_HIDE);//隐藏开始按钮
else if (radioButton2.Checked)
ShowWindow(FindWindowEx(FindWindow("Shell_TrayWnd", null), 0, "Button", null), SW_SHOW);//显示开始按钮
}
- 2022-05-20 11:42:02下载
- 积分:1
-
解决 ecuations
这些都是一些有效的方法来解决 ecuations 和细根的每一个人,例如高斯、 高斯约旦、 高斯赛德尔、 路。
- 2023-06-28 03:30:03下载
- 积分:1
-
VC++简单的计算器
一个简单的VC++计算器,功能简单那种,界面仿Windows,不过只可以完成加减乘除的运算,后续会增加更多功能,只是一个写给新手参考的计算器程序。
- 2022-05-27 00:43:14下载
- 积分:1