登录
首页 » 数据结构 » MongoDB 连接

MongoDB 连接

于 2022-05-26 发布 文件大小:380.61 kB
0 60
下载积分: 2 下载次数: 1

代码说明:

这是一个 java 文件来连接到 MONGODB 数据库适合初学者。MongoDB 支持 Map Reduce 和分片为了获得最佳性能。MongoDB 用于大数据

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

发表评论

0 个回复

  • 哈夫曼树和哈夫曼编码: 从终端输入若干个字符及其对应的整,将整作为点的权值,建立哈夫曼树,然后对各字符进行哈夫曼编码。最后打印哈夫曼树和对应的哈夫曼编...
    哈夫曼树和哈夫曼编码: 从终端输入若干个字符及其对应的整数,将整数作为结点的权值,建立哈夫曼树,然后对各字符进行哈夫曼编码。最后打印哈夫曼树和对应的哈夫曼编码。 设计要求: ⑴ 哈夫曼殊和哈夫曼编码的存储表示参考教材事例 ⑵ 在程序中构造四个子程序为 ① int createhtree(HTree *t) /*根据输入的字符及其权值建立哈夫曼树*/ ② void coding(HTree *t, char *code) /*对哈夫曼树进行编码*/ ③ void printhtree(HTree *t, int* path) /*中序打印树*/ ④ void printcode(HTree *t) /*输出个字符的哈夫曼编码*/ -Huffman tree and the Huffman coding: input from the terminal a number of characters and their corresponding integer, will be an integer as node weights, the establishment of Huffman tree, and then on the characters Huffman. Finally print Huffman tree and the corresponding Huffman. Design requirements: ⑴ Huffman and Huffman coding is that the reference materials storage ⑵ examples constructed in the procedure for the four subroutines ① int createhtree (HTree* t)/* input characters in accordance with its right value the establishment of Huffman tree*/② void coding (HTree* t, char* code)/* Huffman tree to encode*/③ void printhtree (HTree* t, int* path)/* Pri
    2022-01-22 06:46:42下载
    积分:1
  • 课程设计,用C语言编写的约瑟夫环
    数据结构课程设计,用C语言编写的约瑟夫环-data structure course design, preparation of the C language Josephus
    2023-03-28 01:50:04下载
    积分:1
  • 1.定义二叉树的链式。 2.编写函,创建下图所示的二叉树。 3.编写函输出二叉树的先序、中序、后序遍历。...
    1.定义二叉树的链式数据结构。 2.编写函数,创建下图所示的二叉树。 3.编写函数输出二叉树的先序、中序、后序遍历。-1. The definition of binary tree data structure chain. 2. Write a function, create a binary tree as shown in figure below. 3. Write function, the output of the first binary sequence, in order, postorder traversal.
    2022-11-26 19:05:03下载
    积分:1
  • a binary tree using the trigeminal Chain example, the leaves are obtained and th...
    一个二叉树的三叉链表运用实例,求出叶子的结点并输出从根结点到该叶子结点的路径!-a binary tree using the trigeminal Chain example, the leaves are obtained and the output node from the Root of leaf nodes in the path!
    2022-02-21 08:16:56下载
    积分:1
  • 题目:稀疏矩阵是指那些多元素为0的矩阵.利用稀疏特点进行存储和计算可以大大节省存储空间,提高计算效率.实现一个能进行稀疏矩阵基本运算的运算器.基本要求:以带行...
    题目:稀疏矩阵是指那些多数元素为0的矩阵.利用稀疏特点进行存储和计算可以大大节省存储空间,提高计算效率.实现一个能进行稀疏矩阵基本运算的运算器.基本要求:以带行逻辑连接信息的3元组顺序表表示稀疏矩阵,实现两个矩阵相加,相减和相乘的运算.矩阵的输入形式采用3元组表示,而运算结果的矩阵则以通常的阵列形式列出.概要设计:1.以带行逻辑连接信息的3元组顺序表表示稀疏矩阵2.本程序包含2个模块:(1) 各集合定义模块(2) 主程序模块-topics : sparse matrix refers to those elements for most of the matrix 0. Using sparse features storage and computation can be greatly reduced storage space and improve computational efficiency. One can achieve for sparse matrix operations basic computing device. Basic requirements : OK logical connection with the three yuan Information Group the order said the sparse matrix table to achieve two matrices together, subtract and multiply arithmetic. Matrix entry forms using three yuan Group said, and the results of the matrix operations while the usual array listed. summary of design : 1. in line with the logic of information linking the three element group said sparse chronology matrix 2. this program contains two modules : (1) Set module (2) main program module
    2022-05-29 01:02:00下载
    积分:1
  • VC 连接 SQL的例子
    VC 连接 SQL的例子-an example of connecting sql by vc
    2022-02-12 14:24:08下载
    积分:1
  • 网上购物库,所有代码都有,包括模型图
    网上购物数据库,所有代码都有,包括模型图 -Online Shopping Database
    2023-08-14 04:35:03下载
    积分:1
  • access2002库管理实务 超星格式图书
    access2002数据库管理实务 超星格式图书-access2002 database management practices Superstar format books
    2022-03-06 06:24:08下载
    积分:1
  • 代码茂 LCD4bit.c
    空 LCD_Enable(void) { output_high(LCD_EN) ; delay_us(100) ; output_low(LCD_EN) ; delay_us(500) ; } //Ham Gui 4 位杜代替 Ra 液晶屏 无效 LCD_Send4Bit (无符号字符型数据) { output_bit (LCD_D4,数据与 0x01) ; output_bit (LCD_D5,数据 & 0x02) ; output_bit (LCD_D6,数据 & 0x04) ; output_bit (LCD_D7,数据 & 0x08) ; / /
    2023-08-23 22:00:03下载
    积分:1
  • 实现了银行家算法,操作系统课程设计时编写的,能够成功运行...
    实现了银行家算法,操作系统课程设计时编写的,能够成功运行-The banker" s algorithm implementation, the operating system designed to prepare the curriculum, be able to run successfully
    2022-01-25 16:56:53下载
    积分:1
  • 696522资源总数
  • 104042会员总数
  • 18今日下载