-
make use of serial port communication to relay messages for use wince
利用串口通信转发消息供wince使用
- 2022-06-15 13:33:47下载
- 积分:1
-
请认真阅读您的文件包然后写出其具体功能(至少要20个字)。尽量不要让站长把时间都花费在为您修正说明上。压缩包解压时不能有密码...
请认真阅读您的文件包然后写出其具体功能(至少要20个字)。尽量不要让站长把时间都花费在为您修正说明上。压缩包解压时不能有密码-Please read them carefully before you write the document package to their specific functions (at least 20 words). Try not to let the station master at the time you spend on the amendment note. Package should not have a password when extracting
- 2022-03-09 14:55:57下载
- 积分:1
-
Description:
采用邻接表表示有向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列,...
Description:
采用邻接表表示有向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列,边的输入按照边的顶点序号从小到大的顺序排列,如下图的边的输入顺序为0 1,0 2,0 3,1 2,1 3,2 4,3 4共七条边,邻接表的边结点采用头插法。本输入样例中所用的图如下所示:
Input Format:
第一行输入两个值,第一个是图中顶点的个数,第二个是图中边的条数
第二行输入各顶点的信息,即输入每个顶点字符
第三行开始输入每条边,每条边的形式为两个顶点的序号,中间以空格隔开,输入完一条边换行
Output format:
首先输出图的顶点信息,输出完毕换行
接着输出图的邻接表,格式为首先输出第一个顶点,接着输出该顶点的所有的临界点的序号,换行,然后输出下一个顶点及邻接点,以此类推
接下来一行输出从图的第一个顶点开始进行深度优先遍历的序列,中间以空格隔开,输出完毕换行
最后一行输出从图的第一个顶点开始进行广度优先遍历的序列,中间以空格隔开,输出完毕换行
-Description:
Adjacency list using said directed graph to complete the map creation, map of the depth-first traversal, breadth-first graph traversal operations. In which vertex information is character, the graph vertices in order arranged by character number, while the input side of the vertex according to serial number from small to large order, the following graph of the input side of the order of 0 1,0 2,0 3,1 2,1 3,2 4,3 4 a total of seven edge, the edge-node adjacency list using the first interp
- 2022-01-28 23:09:39下载
- 积分:1
-
Very good website of a government, we can try, really good, let us look at it.
很好的一个政府网站,大家可以试试,真的很不错的,大家看看吧。-Very good website of a government, we can try, really good, let us look at it.
- 2022-03-16 23:33:38下载
- 积分:1
-
有关本体实际应用的,并且包含了java 3d图像的显示,和SWRL查询。...
有关本体实际应用的,并且包含了java 3d图像的显示,和SWRL查询。-The practical application of the body, and contains the java 3d image display, and the SWRL queries.
- 2022-02-27 04:57:45下载
- 积分:1
-
模仿VC和上位机进行通信,协议为BTM通信协议!
模仿VC和上位机进行通信,协议为BTM通信协议!-VC and the host computer to imitate communicate agreement BTM communication protocol!
- 2022-02-06 15:20:58下载
- 积分:1
-
小波_一维二维图形分解与重构,并给出了详细的图像近似低频系数图像以及水平、垂直、对角线高频图像,给出了程序的详细说明,附有图片,对初学者帮助会很大...
小波_一维二维图形分解与重构,并给出了详细的图像近似低频系数图像以及水平、垂直、对角线高频图像,给出了程序的详细说明,附有图片,对初学者帮助会很大-use wave to process images in matlab,include one and two dimension wavedec2 and waverec2
- 2023-02-02 05:25:04下载
- 积分:1
-
文字的颜色渐变的源程序
文字的颜色渐变的源程序-text color gradient of the source
- 2022-07-06 23:17:53下载
- 积分:1
-
HTML5商城程序,支持苹果端与安卓端的APP开发
哈哈,感觉还不错的使用HTML5写的,30秒果断制作自己的商城,哈哈!!!感觉很不错!!!
- 2022-03-19 06:03:01下载
- 积分:1
-
如何使用DocX 库在 .DOCX 文件中替换一列单词
翻译 maninwest@Codeforge 作者:B. Clay Shannon@Codeproject使用 DocX 库替换 .docx 文件中的字任务我想替换英式英语的拼写为美式口语。例如, 替换 "colour" 为 "color", "centre" 为 "center", "plough" 为"plow", 等。我可以使用查找>替换来一个一个地替换,但是很麻烦。所以,我找到一个库 。为了使用这个 docx库,只需从 这里 下载(docx.dll)。在你的项目中添加到它的引用,然后添加此 using子句:using Novacode;
首先需要加载具有”错误"拼写的文档:string filename = string.Empty;
DialogResult result = openFileDialog1.ShowDialog();
if (result == DialogResult.OK)
{
filename = openFileDialog1.FileName;
}
else
{
MessageBox.Show("No file selected - hasta la vista and Ciao, baby!");
return;
}
using (DocX document = DocX.Load(filename))
{
document.ReplaceText("travelled", "traveled");
document.Save();
}
我们当然想以此完成所有词汇替换。首先,我们需要有一列单词,这样编码: 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-01-25 21:24:19下载
- 积分:1