搜索结果
找到约 65 项符合
break 的查询结果
按分类筛选
- 全部分类
- 源码 (11)
- 单片机编程 (6)
- Java编程 (6)
- 其他 (4)
- 技术资料 (3)
- Internet/网络编程 (2)
- 其他书籍 (2)
- 人工智能/神经网络 (2)
- Linux/Unix编程 (2)
- Applet (2)
- VC书籍 (2)
- 书籍 (2)
- Java书籍 (1)
- 人物传记/成功经验 (1)
- matlab例程 (1)
- 操作系统开发 (1)
- 软件设计/软件工程 (1)
- 电子书籍 (1)
- 驱动编程 (1)
- 其他嵌入式/单片机内容 (1)
- 书籍源码 (1)
- 编译器/解释器 (1)
- JavaScript (1)
- 单片机开发 (1)
- 数据结构 (1)
- 嵌入式/单片机编程 (1)
- *行业应用 (1)
- 文章/文档 (1)
- 技术书籍 (1)
- 软件 (1)
- 论文 (1)
- 习题答案 (1)
- VIP专区 (1)
源码 c语言算法排序
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and
another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.)
#include<stdio.h>
#include<stdlib.h>
void merge(int arr[],int low,int mid,int high){
&nbsp; ...
论文 用于锂 - 硫电池的纳米结构金属氧化物和硫化物(1)
Lithium–sulfur (Li–S) batteries with high energy density and long cycle life are considered to be one of the most promising next-generation energy-storage systems beyond routine lithium-ion batteries. Various approaches have been proposed to break down technical barriers in Li–S battery systems. ...
习题答案 java入门编程合集
题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?&nbsp;&nbsp;&nbsp;
//这是一个菲波拉契数列问题
public class lianxi01 {
public static void main(String[] args) {
System.out.println("第1个月的兔子对数:&n ...
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 学生成绩guanli
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...
源码 C语言编写雅可比迭代
# include<stdio.h>
# include<math.h>
# define N 3
main(){
&nbsp;&nbsp; &nbsp;float NF2(float *x,float *y);
&nbsp;&nbsp; &nbsp;float A[N][N]={{10,-1,-2},{-1,10,-2},{-1,-1,5}};
&nbsp;&nbsp; &nbsp;float b[N]={7.2,8.3,4.2},sum=0;
&nbsp;&nbsp; &nbsp;float x[N]= {0,0,0},y[N]={0},x0[N]={};
&nbsp;&nbsp; &n ...
书籍 Electro Static Discharge Understand
Static electricity is the most ancient form of electricity known to humans. More
than 2000 years ago, the Greeks recognized the attraction between certain mate-
rials when they were rubbed together; indeed, the word electricity comes from
the Greek elektron, which means amber. During the seventeenth ...
书籍 Audio+Engineering
Sound is simply an airborne version of vibration. The air which carries sound is a mixture
of gases. In gases, the molecules contain so much energy that they break free from
their neighbors and rush around at high speed. As Figure 1.1(a) shows, the innumerable
elastic collisions of these high-speed ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
源码 数组子系统
#include <stdio.h>
#include <stdlib.h>
#define SMAX 100
typedef struct SPNode
{
int i,j,v;
}SPNode;
struct sparmatrix
{
int rows,cols,terms;
SPNode data [SMAX];
};
sparmatrix CreateSparmatrix()
{
sparmatrix A;
printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):");
scanf("%d, ...