登录
首页 » 数据结构 » 本系统为餐饮管理系统,为现代餐饮业管理更便捷化,节约时间...

本系统为餐饮管理系统,为现代餐饮业管理更便捷化,节约时间...

于 2023-04-11 发布 文件大小:1.35 MB
0 169
下载积分: 2 下载次数: 1

代码说明:

本系统为餐饮管理系统,为现代餐饮业管理更便捷化,节约时间-This system is catering management system for modern catering industry oriented management more convenient, saving time

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

发表评论

0 个回复

  • An implementation tool for SYBASE SQL language sample source code features a syn...
    一个执行SYBASE SQL语言的工具示例源代码 功能特色 1 语法颜色显示 2 执行DDL语句 3 在执行SQL Select 语句时使用异步多线程处理方式,这样在检索返回大量 数据Select语句时,不会使占用过多的CPU时间。 -An implementation tool for SYBASE SQL language sample source code features a syntax color display 2 implementation DDL statement 3 in the implementation of SQL Select statement using asynchronous multi-threaded approach, so the return of large amounts of data retrieval when the Select statement, not occupied too much CPU time.
    2022-05-06 20:25:22下载
    积分:1
  • data structure that some simple programming, binary tree structure, traverse the...
    数据结构的一些简单编程题,二叉树结构,遍历的递归于非递归算法-data structure that some simple programming, binary tree structure, traverse the non- recursive recursive algorithm
    2022-05-30 00:01:31下载
    积分:1
  • Twitter 的情绪分析
    这些情绪流过网络这反过来造成的社会情绪。与巨大的信息在网络中流动,它给我们的焦虑期间分析行为的社会媒体的机会。这些行为不同的不同的人口统计有关的事件,可以从不同的角度进行分析。我们发现模式类似事件的不同参数,根据时间等,令人相当满意。我们也做了 Twitter 的情绪总体分析。收集实时推文通过 tweepy (Python 的开放源代码库) 使用 Twitter 的公共流 API (开机自检状态/过滤器),我们使用常规表达式标记化的 tweets 和侦查图释、 Url、 哈希标记、 用户名、 电话号码和城市代码等和删除不必要的信息。此数据集用于生成分类器。此分类器是 NLTK 的 (python 库的 NLP) 朴素贝叶斯执行。 使用上述分类器检测的每个 tweet 的积极和消极情绪。我们做每小时看到的趋势改变集体分析。 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-06-15 23:43:56下载
    积分:1
  • 一. 问题描述很多涉及图上操作的算法都是以图的遍历为基础的。试写一个程序,演示在连通的无向图上访问全部节点的操作。二. 基本要求以邻接多重链表为存储。实现连...
    一. 问题描述很多涉及图上操作的算法都是以图的遍历为基础的。试写一个程序,演示在连通的无向图上访问全部节点的操作。二. 基本要求以邻接多重链表为存储结构。实现连通无向图的深度和广度优先遍历。以用户指定的节点为起点,分别输出每种遍历下的节点访问序列和相应生成树的边集。-one. Description many issues involving maps of algorithms are to traverse the map-based. A written test procedures, demonstrating the connectivity of undirected graph visit all the nodes on the operation. 2. Adjacent to the basic requirements for storage of multiple linked list structure. Connectivity to the map without the depth and breadth- first traversal. User specified nodes as a starting point, the output of each node traversal visit Spanning Tree sequence and the corresponding set of edges.
    2022-07-10 16:08:09下载
    积分:1
  • This is the bus company old man card issuance management software, simple and pr...
    这是公交公司老年证发放管理软件,简单实用-This is the bus company old man card issuance management software, simple and practical
    2022-03-07 07:30:51下载
    积分:1
  • VB程序的电话号码了
    VB做的电话号码查询程序-VB done for the telephone number of procedures
    2022-04-14 14:32:46下载
    积分:1
  • 用Matlab实现的Dijkstra算法源码。主要用于求最短路径。
    用Matlab实现的Dijkstra算法源码。主要用于求最短路径。-Using Matlab source realize the Dijkstra algorithm. Mainly used for the shortest path.
    2022-04-17 00:14:37下载
    积分:1
  • c++链式队列的实现
    c++链式队列的实现头文件如下: typedef int Item; typedef struct node * PNode; typedef struct node {  Item data;  PNode next; }Node; typedef struct {  PNode front;  PNode rear;  int size; }Queue; /*构造一个空队列*/ Queue *InitQueue(); /*销毁一个队列*/ void DestroyQueue(Queue *pqueue); /*清空一个队列*/ void ClearQueue(Queue *pqueue); /*判断队列是否为空*/ int IsEmpty(Queue *pqueue); /*返回队列大小*/ int GetSize(Queue *pqueue); /*返回队头元素*/ PNode GetFront(Queue *pqueue,Item *pitem); /*返回队尾元素*/ PNode GetRear(Queue *pqueue,Item *pitem); /*将新元素入队*/ PNode EnQueue(Queue *pqueue,Item item); /*队头元素出队*/ PNode DeQueue(Queue *pqueue,Item *pitem); /*遍历队列并对各数据项调用visit函数*/ void QueueTraverse(Queue *pqueue,void (*visit)());
    2023-09-04 20:50:03下载
    积分:1
  • 重写了微软提供SQLHelper(共用的库调用接口) 1把SqlHelper的connectionString做成一个全局量,统一设置库连接字符串 2增...
    重写了微软提供SQLHelper(共用的数据库调用接口) 1把SqlHelper的connectionString做成一个全局量,统一设置数据库连接字符串 2增加了返回特定表名的DataSet的各接口。 可在项目的config文件设置数据库连接字符串 private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings["ConnectionString"] 当然可以把数据库连接方法修改后直接用。-rewritten Microsoft SQLHelper (shared database Call Interface) a SqlHelper the connectionString caused an overall volume, uniform database connections increased by two strings to the specific name of the table in the DataSet interface. In the config files set database connection string private static string connectionString = System.Configuration.ConfigurationSettings.AppSettings [ "ConnectionString"] lt; !-- Application specific settings-- gt; Lt; AppSettingsgt; Lt; Add key
    2022-06-02 10:24:49下载
    积分: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
  • 696518资源总数
  • 106164会员总数
  • 18今日下载