CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - void

搜索资源列表

  1. Data_struct_1

    0下载:
  2. 数据结构课后设计题第一章 ◆1.16② 试写一算法,如果三个整数X,Y和Z 的值不是依次非递增的,则通过交换,令其为 非递增。 要求实现下列函数: void Descend(int &x, int &y, int &z) void Descend(int &x, int &y, int &z) { int temp if(x<=y){temp=x x=y y=temp } if(y<=z){temp=y y=z z
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:1846
    • 提供者:苏文俊
  1. Data_struct_2

    0下载:
  2. 数据结构课后设计题第二章(2009-06-17 23:19:42)转载标签:数据结构第二章杂谈 分类:编程 ◆2.11② 设顺序表L中的数据元素递增有序。 试写一算法,将x插入到L的适当位置上,并保 持该表的有序性。 要求实现下列函数: void InsertOrderList(SqList &L, ElemType x) 顺序表类型定义如下: typedef struct { ElemType *elem int length
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:3915
    • 提供者:M.T
  1. list.tar

    0下载:
  2. 链表 双向链表的简单实现,增 删,改等方法-typedef int llist_cmp(const void*, const void*) typedef void llist_op(void*) typedef void LLIST LLIST*llist_creat(int size) void llist_destroy(LLIST*) int llist_prepend(LLIST*, void*) int llist_a
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1548
    • 提供者:aasdf
  1. C_lianbiao

    0下载:
  2. Data *Create() //创建一个带头结点的空表 void Insert(Data *,int) //插入一个节点 void Reverse(Data *) //就地逆置 void Delete(Data *) //删除指定节点的节点 void Print(Data *) //打印链表 void Exit() //退出-Data* Create () // create an empty table to take the lead node void I
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1242
    • 提供者:
  1. compositor

    0下载:
  2. 编写函数void fun(int *x,int n),功能是:求出长度为n的数组x中的最大数与 次最大数,并把最大数和a[0]对调,次最大数和a[1]对调,其余的数保持不变。-Write a function void fun (int* x, int n), function is: find the length of the array x n the maximum number and maximum number of times, and the maximum number
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:7838
    • 提供者:win
  1. Link

    0下载:
  2. 链表的实现 认真书写上传的资料详细功能包含内容说明-I am a primerver i need help i need this thing sorry i m worry void fun() usigned int a need help
  3. 所属分类:Data structs

    • 发布日期:2017-05-10
    • 文件大小:2354682
    • 提供者:张路
  1. quicksort_random

    0下载:
  2. 快速排序,使用随机哨兵 void quickSort(int numbers[], int array_size) void q_sort(int numbers[], int left, int right) -quicksort by means of random pivot void quickSort(int numbers[], int array_size) void q_sort(int numbers[], int left, int right)
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:639
    • 提供者:寻常
  1. void-SelectSort

    0下载:
  2. /数据结构 利用c++ 环境惊醒的对单链表就地逆置-/ Data structures using c++ environment awakened against the set of single linked list in-place
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:11990
    • 提供者:李强
  1. NO2

    0下载:
  2. 顺序表 create_sqlist(Sqlist *L)/*创建顺序表*/ { int k ElemType x k=0 scanf(" d",&x) while(x!=0) { L->data[k]=x k++ scanf(" d",&x) } L->length=k } void print_sqlist(Sqlist *L)/*输出顺序表*/ { int j
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:629
    • 提供者:韩若
  1. Ex1

    0下载:
  2. public: List() //构造函数 int size() const //返回链表的长度 bool full() const //返回链表是否已满 bool empty() const //返回链表是否已空 void clear() //清空链表 int retrieve( int position, string &x ) const //获取链表第position位置的元素到x,成功返回0,否则返回-1 int replace( int positi
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1910
    • 提供者:hannianqiao
  1. About-Void-in-C

    0下载:
  2. 描述关于C语言中,Viod的重要作用。Viod可以应用到子函数,指针等。-about Viod
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:8821
    • 提供者:chengping
  1. include

    0下载:
  2. 在采用二叉链表存储的二叉树上,编程实现从根结点到指定结点之间的路径.-#include <stdio.h> #include <stdlib.h> typedef struct BTnode { char data struct BTnode*lchild,*rchild }BTNode #define NodeLen sizeof(BTNode) BTNODE*Creat_Bt(void) void Preorder
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:5308
    • 提供者:金俊秋
  1. data-structure.tar

    0下载:
  2. 用C实现的常用数据结构集合,包括链表、堆栈、队列、位图、优先级队列、向量、堆等,对于初学数据结构是个相当不错的材料,都是自己亲自实现并测试的,各个数据结构的元素类型采用了通用类型(void *)-common data structures implemented using C language, including linked lists, stacks, queues, bit maps, priority queues, vector, stack, etc. A very good
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:9932
    • 提供者:joey.zhao
  1. juzhen

    0下载:
  2. 矩阵操作 c++实现 课程设计 #include <iostream.h> #include <stdlib.h> #include<iomanip.h> void fanzhuan1(int b[5][5]) void fanzhuan2(int b[5][5]) void juandong1(int b[5][5]) void juandong2(int b[5][5]) void print(int b[5]
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1579
    • 提供者:黄苏敏
  1. paixu

    0下载:
  2. 用指向指针的方法对n个数进行排序并输出,n和各整数在主函数中输入-#include <stdio.h> #define SIZE 100//数组最大长度 #define SWAP(x, y, t) (t = x, x = y, y = t)//交换两个数 void sort(int**p, int n){//排序函数 int i, j int min int temp for(i = 0 i < n- 1 i++){
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:15965
    • 提供者:李明
  1. Mergerandarray

    0下载:
  2. 可按如下所述实现归并排序:假设序列中有k个长度为小于等于L的有序子序列。利用过程merge(参见教科书10.5)对它们进行两两归并,得到[k/2]个长度小于等于2l的有序子序列,称为一趟归并排序。反复调用一趟归并排序过程,使有序子序列的长度自l=1开始成倍的增加,直至使整个序列成为一个有序序列。是对序列实现上述归并排序的递推算法,并分析你的算法的时间复杂度。 本程序包含四个模块: 1. 主程序模块: void main() {初始化序列; 对序列归并排序; 输出
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:10793
    • 提供者:
  1. WinRAR-ZIP

    0下载:
  2. 在C++用递归实现链表逆序 使得倒序输出。-#include <stdio.h> #include <stdlib.h> #include <time.h> const int M=10 typedef int Type typedef struct Node{ Type data struct Node* next }Node void add_elem(Node**head,Type data){ Node
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:3111
    • 提供者:ye zi
  1. sy2-1

    0下载:
  2. 实现顺序表的初始化算法、求表长算法、判表空算法、取指定位序元素算法、查指定元素的位序算法、在指定位序插入算法、删除指定位序元素算法及释放顺序表的算法。-SeqList*Init_SeqList void Destroy_SeqList int Empty_SeqList int Length_SeqList void Disp_SeqList int Get_data int Locate_data int Insert_SeqList int Delete_SeqList
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:1634
    • 提供者:
  1. main1

    0下载:
  2. /* * Author: m_h_yang@163.com, on March 29th, 2012 * 问题一:删除子串; * 问题二:对两个任意大正整数进行相加,得到其和。 * 注:此俩问题为某公司校招时的上机编程考试题。 */-int delete_sub_str(const char*str, const char* sub_str, char* result_str) void add(const char*num1, const char*num2
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:2310
    • 提供者:Qinzhu Yang
  1. static-void-StaticFunc2

    0下载:
  2. 当给定函数的Y值,能实现函数的绘画。并且能自动改变函数的大小-When the Y values ​ ​ of a given function, the function of painting. And can automatically change the size of the function
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1503242
    • 提供者:李孟来
« 1 23 »
搜珍网 www.dssz.com