登录
首页 » 数据结构 » 这是一个人力资源管理系统,可用于机构的日常管理,可供学习...

这是一个人力资源管理系统,可用于机构的日常管理,可供学习...

于 2022-11-19 发布 文件大小:131.08 kB
0 189
下载积分: 2 下载次数: 1

代码说明:

这是一个人力资源管理系统,可用于机构的日常管理,可供学习-This is a human resources management system can be used for the daily management of institutions available for study and

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 整洁的代码
    Dapper-一个简单的.Net对象映射程序
    2022-03-30 09:57:45下载
    积分:1
  • POJ 1125己AC源代码,不信你可以试试.
    POJ 1125己AC源代码,不信你可以试试.-POJ 1125 F AC source code, do not believe you can try.
    2023-06-11 04:30:08下载
    积分:1
  • 中缀表达式转后缀表达式,中堆栈的应用。
    中缀表达式转后缀表达式,数据结构中堆栈的应用。-Switch to postfix infix notation expressions, the data structure stack applications.
    2022-12-02 07:15:03下载
    积分:1
  • trainreset:有许多列车需要开车出站的作用。
    TrainReset:there are many trains need to drive out of the station .In terms of their numbers from small to large.There are only three railways used to place the trains ,and also need the same order.-TrainReset : there are many trains need to drive out of the sta tion. In terms of their numbers from small to deviation ge.There are only three railways used to place t he trains, and also need the same order.
    2022-07-14 05:15:14下载
    积分:1
  • vc++库编程ListCombo
    vc++数据库编程ListCombo-vc ListCombo Database Programming
    2022-09-13 13:50:03下载
    积分:1
  • (1) 用一个4*20的二维组M,第1行存放按从小到大排序的20个所给出的ai和bi,第2行存放相应的作业序号,第3行存放1或2(1代表是来自ai,2代表是来...
    (1) 用一个4*20的二维数组M,第1行存放按从小到大排序的20个所给出的ai和bi,第2行存放相应的作业序号,第3行存放1或2(1代表是来自ai,2代表是来自bi), 第4行存放0或1(0代表作业序号未进入最优调度方案;1代表作业序号已进入最优调度方案) (2) 排序完后,按课本所述方法求一种最优调度方案,存放在S中。 -(1) with a 4* 20 two-dimensional array M, the first a line to deposit a small to large order of 20 given by ai and bi, line 2 store operation corresponding serial number, the first three lines deposited one or 2 (a representative from the ai, 2 representatives from the bi), the first four rows stored 0 or 1 (0 for job number to gain access to optimal scheduling programs a job number has been entered on behalf of the optimal scheduling scheme) ( 2) Sort exhausted, according to the methods described in textbooks, seeking the optimal scheduling of a program stored in the S in.
    2022-05-07 13:53:40下载
    积分:1
  • ——链表(双向循环链表)
    双向循环链表节点:数据域+指针域指针域:一个指针指向前一个同类型节点,另一个指针指向后一个同类型节点(1)设计节点struct db_node{int data;struct db_node * prev;struct db_node * next;};(2)创建空链表//创建了一个只有头节点的双向循环链表,返回头节点的地址struct db_node * create_db_list(void){struct db_node * phead = (struct db_node *)malloc(sizeof(struct db_node));if(phead == NULL)exit(-1);else{phead->next = phead;phead->prev = phead;}return phead;}(3)制造新节点//制造新节点,返回新节点的地址struct db_node * make_db_node(int value){struct db_node * pnew = (struct db_node *)malloc(sizeof(struct db_node));if(pnew == NULL)printf("malloc failed! ");else{pnew->data = value;pnew->next = NULL;pnew->prev = NULL;}return pnew;}(4)插入节点//把pnew指向的节点插入到头节点的前面,也就是整个链表的末尾bo
    2022-02-14 07:06:11下载
    积分:1
  • 一种查找库中关于一个字符串的匹配的
    一种查找数据库中关于一个字符串的匹配的数据结构-Find a database on a string of matching data structure
    2022-07-15 08:41:46下载
    积分:1
  • 1、 用随机生成的方式(要求用户输入随机)产生一个迷宫:“1”表示墙,“0”表示路,最后的路径用“8”表示,若没有路径则打印报文,若有路径则打印出路径。...
    1、 用随机数生成的方式(要求用户输入随机数)产生一个迷宫:“1”表示墙,“0”表示路,最后的路径用“8”表示,若没有路径则打印报文,若有路径则打印出路径。 2、 通过堆栈及判断实现迷宫的自动寻找路径功能 -1, the random number generator of (requiring user input random number) produces a maze : "a" Wall said, "0" Lu said, the final path with "8" that if no path was reportedly Print text, if it were printed out trails path. 2, stack and judgment to achieve the labyrinth path function to automatically search
    2023-03-22 00:45:03下载
    积分:1
  • 以前做的课程设计,可用于学习VB与ACCESS的连接!
    以前做的课程设计,可用于学习VB与ACCESS的连接!-done before the curriculum design, learning VB can be used in connection with ACCESS!
    2022-02-15 13:33:11下载
    积分:1
  • 696518资源总数
  • 106235会员总数
  • 12今日下载