搜索结果
找到约 93 项符合
null 的查询结果
按分类筛选
- 全部分类
- Linux/Unix编程 (15)
- 其他 (10)
- 源码 (8)
- 数据结构 (6)
- Java编程 (4)
- matlab例程 (3)
- SQL Server (3)
- 驱动编程 (2)
- 酒店行业 (2)
- Applet (2)
- Windows CE (2)
- 压缩解压 (2)
- 软件设计/软件工程 (2)
- VC书籍 (2)
- Java书籍 (2)
- Jsp/Servlet (2)
- 软件 (2)
- 单片机编程 (1)
- Internet/网络编程 (1)
- 数学计算 (1)
- 书籍源码 (1)
- 通讯/手机编程 (1)
- 汇编语言 (1)
- 教育系统应用 (1)
- 操作系统开发 (1)
- 加密解密 (1)
- 多国语言处理 (1)
- CA认证 (1)
- Delphi控件源码 (1)
- JavaScript (1)
- 文章/文档 (1)
- 金融证券系统 (1)
- 其他数据库 (1)
- 其他书籍 (1)
- 其他嵌入式/单片机内容 (1)
- 文件格式 (1)
- 串口编程 (1)
- 企业管理 (1)
- 电子书籍 (1)
- Linux/uClinux/Unix编程 (1)
- 技术资料 (1)
Linux/uClinux/Unix编程 两个链表的交集
两个链表的交集
#include<stdio.h>
#include<stdlib.h>
typedef struct Node{
&nbsp; int data;
&nbsp; struct &nbsp;Node *next;
}Node;
void initpointer(struct Node *p){
&nbsp; p=NULL;
}
int &nbsp;printlist(struct Node* head){
&nbsp; int flag=1;
&nbsp; head=head->next;
&nbsp; /*
&nbsp; 因为标记1的地 ...
Jsp/Servlet asp实现限制一个ip只能访问一次的方法
asp实现限制一个ip只能访问一次的方法
<%&nbsp;
'/////////////////////////////////////////////////////&nbsp;
'// //&nbsp;
'//作用:一个IP地址只允许访问本页一次 //&nbsp;
'//引用:<!-- #include file="Check_Ip.asp" --> //&nbsp;
'// //&nbsp;
'/////////////////////////////////////////////////////&nbsp; ...
源码 运动会源代码
#include&nbsp;<malloc.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdio.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#include&nbsp;<string.h>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;
#define&nbsp;NULL&nbsp;0&nbsp;&nbsp; &nbsp;&nbsp ...
软件 学生成绩查询
#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 ...
源码 学生成绩管理啊
#include "string.h"
#include "ctype.h"
#include "stdio.h"
search(char pd[])
{FILE *fp;
&nbsp;int time=0,i=0,j=0,add[80],k=0,m;
&nbsp;char *ch,
&nbsp;str[900];
&nbsp;m=strlen(pd);
&nbsp;if((fp=fopen("haha.txt","r"))==NULL)
&nbsp;{
&nbsp; printf("Cannot open this file\n");
&nbsp; exit(0);
&nbsp;}
for( ...
源码 c#简单计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
软件 简单的计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
源码 数据结构实验
#include&nbsp;<stdio.h>&nbsp;&nbsp;
#include&nbsp;<stdlib.h>&nbsp;///链式栈&nbsp;&nbsp;
&nbsp;&nbsp;
typedef&nbsp;struct&nbsp;node&nbsp;&nbsp;
{&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;int&nbsp;data;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;struc ...
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...
源码 成绩查询系统
#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 ...