搜索资源列表
用c编写的N*N的螺旋矩阵源代码
- /* 实现效果: 1 2 6 7 15 3 5 8 14 16 4 9 13 17 22 10 12 18 21 23 11 19 20 24 25 */ #include <stdio.h> #define N 5 //阶数,即N*N的螺旋矩阵 void main() { int i, j, num=1, a[N][N]; for(i=0; i<=N/2; i++) &nb
web server监测
- This Unix C code monitors a web server every few minutes by trying to retrieve its home page. It sends you email when it can t connect, and every so often while the server is still down. It sends a final message when it comes back up. If you have ema
w32_worm_Arod
- The worm will produce Arod.exe and " get to C: \WINDOWS catalogue . After starting the machine again , will put worm shelf Arod.exe into C: \, C:\WINDOWS,In zip file under WINDOWS \system32 , these three catalogues ,. As the user opens Outlook Expres
Practice1_14
- 字符串交叉输入,就是将一个字符串交叉的输入到了另一个字符串当中,比如: char a[4]="ABCD" char b[4]="abcd" 则char c[8]="AaBbCcDd" -Cross-string input, is to cross a string input to another string of them, such as: char a [4] = "ABCD" char b [4] = "abcd" While char c [8] =
ccfx
- 实验目的:用c语言对一个简单语言的子集编制一个一遍扫描的编译程序,以加深对编译原理的理解,掌握编译程序的实现方法和技术。 c.1词法分析 c.1.1实验目的 设计、编制并调试一个词法分析程序,加深对词法分析原理的理解。 c.1.2实验要求 c.1.2.1待分析的简单语言的词法 (1) 关键字: begin if then while do end --------有实验报告+.cpp+分析-Experimental Objective: To use c lang
ProgramacaoOrientdaaObjetosemCpp_Bueno.pdf
- Brazilian book written in Portuguese for promoting Open Source code while teaching C++.
VCfcm
- FCM算法是一种基于划分的聚类算法,它的思想就是使得被划分到同一簇的对象之间相似度最大,而不同簇之间的相似度最小。模糊C均值算法是普通C均值算法的改进,普通C均值算法对于数据的划分是硬性的,而FCM则是一种柔性的模糊划分-FCM algorithm is a clustering algorithm based on division, and its thinking that it is making is divided into the same cluster of the bigge
fft
- C语言编写的计算FFt同时画出FFt曲线的小程序-C language computing FFt curve while the applet draw the FFt
Phunky-Virus-Writing-Guide
- 病毒写作不是努力,你可能首先想到。要编写有效的病毒,但是,你知道*必须*汇编语言。短,紧凑的代码是汇编语言特点,这些都是可取的病毒特征。但是,它是*不*必要写在纯组装。 C也可以使用,因为它允许几乎所有的系统总控制,同时产生相对紧凑的代码(如果你远离库函数)。但是,您仍然必须访问中断,因此仍需要装配知识。但是,最好还是坚持使用纯汇编,因为大多数的操作更容易使用汇编。如果你不知道大会,我会建议拿起了Microsoft宏汇编圣经副本(Nabajyoti Barkakati,书号#:0-672-226
erchashu.c
- 对二叉树进行创建,寻找父节点,子节点,同时进行广度遍历-Create a binary tree to find the parent node, child nodes, while the breadth traversal
lua-5.2.1
- lua5.2.1库文件找了几天的资料,关于lua调用C++类,无非就是千篇一律的东西,没实际性内容,并且本菜又不喜欢luaplus,luabind,luaTinks等之类的二次封装(一会儿C,一会儿C++,说不定编译狂出错)-The the lua5.2.1 library file to find a few days, Lua calls C++ class, nothing more than the monotony of things, not the actual content,
C-C-Method
- 采用C-C法的同时求时延与嵌入维的经典程序-CC method using delay and embedding dimension while seeking the procedure
Simple-C-language-compiler
- 简单的C语言编译器,完成了简单的功能,包括简单的输入输出和while循环,能自动编译c语言代码,翻译成汇编语言输出-Simple C language compiler, complete simple functions, including simple input and output, and while loops, c language code can be automatically compiled, translated into assembly language outp
msgpack-c
- MessagePack is an efficient binary serialization format, which lets you exchange data among multiple languages like JSON, except that it s faster and smaller. Small integers are encoded into a single byte while typical short strings require only one
C_compiler
- 自己实现的C语言编译器,识别while,if等语句,支持函数调用,生成四元式代码(A simple C compiler supporting while if and function calling, can generate quaternary type of algorithm)
winformddck_v1.0
- C#等待窗体,主程序耗时间较长时等待窗体。(C # waits for forms, while the main program takes longer to wait for the form.)
do-while-loop
- do and while loop in c
第5章 循环结构程序设计
- 几种循环的比较;循环的嵌套;用for 语句实现循环;用do ~ while 语句实现循环(The comparison of several cycles; the nesting of the cycle; the implementation of the cycle with the for statement; the implementation of the cycle with the do ~ while statement)
Desktop
- The integer entered by the user is stored in variable n. Then the while loop is iterated until the test expression n != 0 is evaluated to 0 (false). After first iteration, the value of n will be 345 and the count is incremented to 1. After second
c语言练习题
- Exercise 5: ‘for’ and ‘do … while” repetition statements 1. Write a program which uses a do/while loop to print out the first 10 powers of 2 other than 0 (ie. it prints out the values of 21, 22, ..., 210). Use a for loop to do the same. 注意 po