搜索结果

找到约 1,141 项符合 CSJ-R 的查询结果

源码 利用栈的基本操作实现将任意一个十进制整数N转化为R进制整数。

#include <stdlib.h> #include<stdio.h> #include <malloc.h> #define stack_init_size 100 #define stackincrement 10 typedef struct sqstack { int *base; int *top; int stacksize; } sqstack; int StackInit(sqstack *s) { s->base=(int *)malloc(stack_init_size *sizeof(int)); if(!s->base) return 0; s->top=s->ba ...
https://www.eeworm.com/dl/513582.html
查看: 40

源码 动态电路分析

动态电路分析,用户输入电阻R 电容C 电容初始电压Uc(0+)  激励为正玄电压,当t=0时,开关闭合,求电容电压的全部响应
https://www.eeworm.com/dl/513632.html
查看: 5

应用设计 高校教材管理

题目为高校教材管理的数据库课程设计,里面包括数据流图,E-R图.....
https://www.eeworm.com/dl/513756.html
查看: 13

软件 学生成绩查询

#include "string.h" #include "ctype.h" #include "stdio.h" search(char pd[]) {FILE *fp; int time=0,i=0,j=0,add[80],k=0,m; char *ch, str[900]; m=strlen(pd); if((fp=fopen("haha.txt","r"))==NULL) { printf("Cannot open this file\n"); exit(0); } for(;!feof(fp);i++) { str[i]=fgetc(fp); if(to ...
https://www.eeworm.com/dl/513823.html
下载: 2
查看: 16

源码 学生成绩管理啊

#include "string.h" #include "ctype.h" #include "stdio.h" search(char pd[]) {FILE *fp;  int time=0,i=0,j=0,add[80],k=0,m;  char *ch,  str[900];  m=strlen(pd);  if((fp=fopen("haha.txt","r"))==NULL)  {   printf("Cannot open this file\n");   exit(0);  } for( ...
https://www.eeworm.com/dl/513824.html
查看: 10

笔记 图书馆管理系统

图书馆管理系统的E-R图,通俗易懂,简易明了
https://www.eeworm.com/dl/513835.html
下载: 4
查看: 10

书籍 误差一轮一起

喝好喝好喝好喝好吃好吃哈吃好的撒亲热网特其他额其他re'热情让他q'r't
https://www.eeworm.com/dl/513872.html
查看: 5

手册 12玩饿日

懂得电动到入人r让入 人让 入 人让
https://www.eeworm.com/dl/513921.html
下载: 1
查看: 2

源码 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){   ...
https://www.eeworm.com/dl/514507.html
下载: 1
查看: 15

习题答案 数字图像处理技术 Matlab的运行环境

1. 在MATLAB中,分别对灰度图、真彩色图、索引彩色图,实现图像的读入、显示等功能。 2. 将真彩色图、索引彩色图转为灰度图,并保存到硬盘自己的文件夹下。 3. 如果按下面的操作读入索引彩色图像,请说明X、MAP两个矩阵中是如何保留图像中RGB彩色信息的。         &nb ...
https://www.eeworm.com/dl/515022.html
下载: 2
查看: 19