登录
首页 » 数据结构 » 女王

女王

于 2022-08-12 发布 文件大小:221.74 kB
0 52
下载积分: 2 下载次数: 1

代码说明:

皇后控制问题 皇后控制问题-Queen

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

发表评论

0 个回复

  • achieve the establishment of the provisional district and the establishment of a...
    实现了临时建立分区和永久建立分区的效果 可以压缩和解压缩的解压缩文件-achieve the establishment of the provisional district and the establishment of a permanent regional results can be compression of the extracted files
    2022-10-18 00:35:03下载
    积分:1
  • oracle问题集,适合初学者
    oracle问题集,适合初学者-problem sets, suitable for beginners
    2022-02-01 17:14:30下载
    积分:1
  • 利用MATLAB程序贪心算法求解背包问题
    背包问题运用贪婪算法的matlab 程序实现-Use of greedy algorithm knapsack problem of matlab program
    2022-01-27 12:11:55下载
    积分:1
  • Large databases, triggers (Trigger) knowledge, and its basic programming.
    大型数据库,触发器(Trigger)知识,及其基础编程。-Large databases, triggers (Trigger) knowledge, and its basic programming.
    2022-11-22 13:50:04下载
    积分: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
  • 酒店管理
    感谢您下载...管理员 Id: 管理员管理员通过: 管理员邮寄到您的意见
    2022-02-01 14:49:39下载
    积分:1
  • 假设一个文件中出现了8种符号S0,SQ,S2,S3,S4,S5,S6,S7,那么每种符号要编码,至少需要3bit。假设编码成000,001, 010,011,1...
    假设一个文件中出现了8种符号S0,SQ,S2,S3,S4,S5,S6,S7,那么每种符号要编码,至少需要3bit。假设编码成000,001, 010,011,100,101,110,111。那么符号序列S0S1S7S0S1S6S2S2S3S4S5S0S0S1编码后变成 000001111000001110010010011100101000000001,共用了42bit。我们发现S0,S1,S2这3个符号出现的频率比较大,其它符号出现的频率比较小,我们采用这样的编码方案:S0到S7的码辽分别01,11,101,0000,0001,0010,0011, 100,那么上述符号序列变成011110001110011101101000000010010010111,共用了39bit。尽管有些码字如 S3,S4,S5,S6变长了(由3位变成4位),但使用频繁的几个码字如S0,S1变短了,所以实现了压缩。对于上述的编码可能导致解码出现非单值性:比如说,如果S0的码字为01,S2的码字为011,那么当序列中出现011时,你不知道是S0的码字后面跟了个1,还是完整的一个S2的码字。因此,编码必须保证较短的编码决不能是较长编码的前缀。符合这种要求的编码称之为前缀编码。要构造符合这样的二进制编码体系,可以通过二叉树来实现。-Suppose a file appears in eight kinds of symbols S0, SQ, S2, S3, S4, S5, S6, S7, then each symbol to be encoded, at least 3bit. Suppose encoding 000,001, 010,011,100,101,110,111. Then the symbolic sequence S0S1S7S0S1S6S2S2S3S4S5S0S0S1 encoded into 000001111000001110010010011100101000000001, sharing a 42bit. We found that S0, S1, S2 these three symbols the frequency of relatively large, the other symbols the frequency is relatively smal
    2022-04-27 21:17:34下载
    积分:1
  • Exhaustive Cipher/In many cases we need to exhaustive combinations of algorithms...
    穷举密码算法 /在许多情况下我们需要穷举组合的算法,比如密码词典。 //这个算法的关键是密码下标进位的问题。 //另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。 //如果要提高写文件的效率,可以使用缓冲区,分批写入。-Exhaustive Cipher/In many cases we need to exhaustive combinations of algorithms, such as the password dictionary.// This algorithm, the key is password subscript binary problems.// Another example of this statement to write a document relatively low efficiency, in order to reduce the algorithm complexity is not optimized.// If you want to improve the efficiency of writing documents, you can use the buffer, write in batches.
    2023-09-07 14:55:03下载
    积分:1
  • 一个我的解题集合,里面有我的的作业。
    一个我的数据结构解题集合,里面有我的数据结构的作业。-a data structure Solution Set, containing the information structure of the operations.
    2022-05-22 17:29:40下载
    积分:1
  • 用VC写的模拟内存分配管理的代码,经测试运行完全正确
    用VC写的模拟内存分配管理的代码,经测试运行完全正确-VC write memory allocation management simulation code, the test run entirely correct
    2023-01-07 01:40:03下载
    积分:1
  • 696524资源总数
  • 103930会员总数
  • 47今日下载