摘要: 1.需求 须要实现收银台上加入改动删除商品信息时顾显能够实时看到其变化 2.解决 收银台和顾显通过tcp传输进行数据通信,顾显通过操作html中的表格进行数据加入改动和删除操作 3.代码 mytest.html <html> <head> <meta http-equiv="Content-Type 阅读全文
posted @ 2018-04-09 21:38 zhchoutai 阅读(975) 评论(0) 推荐(0) 编辑
摘要: “一切皆Socket!” 话虽些许夸张。可是事实也是,如今的网络编程差点儿都是用的socket。 ——有感于实际编程和开源项目研究。 我们深谙信息交流的价值,那网络中进程之间怎样通信。如我们每天打开浏览器浏览网页时。浏览器的进程怎么与webserver通信的?当你用QQ聊天时,QQ进程怎么与serv 阅读全文
posted @ 2018-04-09 20:38 zhchoutai 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 题目URL:https://leetcode.com/problems/minimum-depth-of-binary-tree/ 111. Minimum Depth of Binary Tree My Submissions Question Total Accepted: 94580 Tota 阅读全文
posted @ 2018-04-09 20:00 zhchoutai 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 主题StoryBoard 前言:苹果官方是推荐我们将全部的UI都使用Storyboard去搭建,Storyboard也是一个非常成熟的工具了。使用Storyboard去搭建全部界面,我们能够非常迅捷地搭建出复杂的界面,也就是说能为我们节省大量的时间。我们还能够非常直观地看出各个界面之间的关系,改动起 阅读全文
posted @ 2018-04-09 19:24 zhchoutai 阅读(1065) 评论(0) 推荐(0) 编辑
摘要: 在线阅读地址:http://www.doc88.com/p-5126905896771.html Linux编译构建定制qq群: 521902245 文件夹...0 前言...3 第零章 绪论...5 第一章 Linux最小操作系统编译构建研究...7 1 主机环境...7 2 grub编译...7 阅读全文
posted @ 2018-04-09 14:09 zhchoutai 阅读(793) 评论(0) 推荐(0) 编辑
摘要: Description: Count the number of prime numbers less than a non-negative number, n. 基本思路:筛法 1。 2 为素数。 筛掉以2为因子的数。 即 2 * 2, 2*3, 2*4,2*5 2, 寻找到下一个未被筛除的数。 阅读全文
posted @ 2018-04-09 13:24 zhchoutai 阅读(117) 评论(0) 推荐(0) 编辑
摘要: http://codeforces.com/problemset/problem/570/D Tree Requests time limit per test 2 seconds memory limit per test 256 megabytes input standard input ou 阅读全文
posted @ 2018-04-09 11:54 zhchoutai 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 文件夹 1Bayesian model selection贝叶斯模型选择 1奥卡姆剃刀Occams razor原理 2Computing the marginal likelihood evidence 2-1 BIC approximation to log marginal likelihood 阅读全文
posted @ 2018-04-09 10:19 zhchoutai 阅读(718) 评论(0) 推荐(0) 编辑
摘要: 题目: Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [3,2,1]. Note 阅读全文
posted @ 2018-04-09 09:10 zhchoutai 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 机器角色分配和拓扑环境例如以下: 配置副本集s1 1.创建文件夹 在s1h1上创建例如以下文件夹 [root@node3 db]# mkdir -p /db/s1/conf [root@node3 db]# mkdir -p /db/s1/data [root@node3 db]# mkdir -p 阅读全文
posted @ 2018-04-09 08:10 zhchoutai 阅读(439) 评论(0) 推荐(0) 编辑