码迷,mamicode.com
首页 > 其他好文
step by step 之餐饮管理系统二
昨天写了餐饮管理系统的相关需求,得到了园友的一些好的建议,感到很高兴,确实写的也不全面,现在补充一下需要的业务,这次主要做的主要是前台收银系统,所以业务主要集中在前台点菜收银这块,而后面数据管理这块则暂时先不考虑。至于像权限,不同的组门应该有不同的权限不同级别的员工也有相应的权限,比如收银员只有.....
分类:其他好文   时间:2015-01-15 23:21:54    阅读次数:220
江苏南京连锁经营业能赚1040万吗?五级三晋制模式好做吗?
这个行业既不违法也不合没有立法谈不上违法,跟传销还是有区别的。行业采用的模式都是五级三阶制, 但是不是传销,和传销不一样的,既不合法也不违法,属于一个灰色地带,行业虽然是很好的行业、可不是每个人都适合。从事要想在行业里成功,你必须有足够的钱和人脉、时间、以及良好的心态,就是大部分从事者没有认清自身的...
分类:其他好文   时间:2015-01-15 23:21:21    阅读次数:217
ChartControl第一课简短的控件初步设计
WinForms Controls>Controls>Chart Control>Getting StartedThis document gives you a quick overview of what resources you need to review first to get sta...
分类:其他好文   时间:2015-01-15 23:22:33    阅读次数:517
Leetcode:Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array[?2,1,?3,4,?1,2,1,...
分类:其他好文   时间:2015-01-15 23:20:18    阅读次数:194
LeetCode--Maximum Product Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the array [2,3,-2,4], the contiguous subarray [2,3] has the largest...
分类:其他好文   时间:2015-01-15 22:12:45    阅读次数:169
《UNP》习题1.5源码
首先是服务器程序: #include #include int main() { int listenfd, connfd; int nWrite; int count; struct sockaddr_in servaddr; char buff[MAXLINE]; time_t ticks; listenfd = Socket(...
分类:其他好文   时间:2015-01-15 22:14:25    阅读次数:194
BZOJ 2458 BeiJing 2011 最小三角形 分治
题目大意:给出平面上一些点,问这些点组成的最小周长三角形的周长是多少。 思路:与平面最近点对类似的思想,先按照x值排序,通过全局目前搜到的最优解来缩小分治之后需要暴力枚举的范围。具体来说,递归的终止条件是需要处理的点数小于一定数量,就在这些点中暴力枚举来更新答案。这个值经过测定,在这个题中20左右为最快的。具体怎么算我也不知道。。 之后每处理一段区间,先递归处理左右区间来更新答案,弄出...
分类:其他好文   时间:2015-01-15 22:13:24    阅读次数:195
LeetCode--Find Minimum in Rotated Sorted Array
Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Find the minimum element. You may assume no duplicate exists in ...
分类:其他好文   时间:2015-01-15 22:13:10    阅读次数:176
LeetCode--Find Minimum in Rotated Sorted Array II
Follow up for "Find Minimum in Rotated Sorted Array": What if duplicates are allowed? Would this affect the run-time complexity? How and why? Suppose a sorted array is rotated at some pivot u...
分类:其他好文   时间:2015-01-15 22:14:10    阅读次数:166
关联分析中的支持度、置信度和提升度
1.支持度(Support)     支持度表示项集{X,Y}在总项集里出现的概率。公式为:               Support(X→Y) = P(X,Y) / P(I) = P(X∪Y) / P(I) = num(XUY) / num(I)  其中,I表示总项集。num()表示求项集个数 2.置信度 (Confidence)    置信度表示在先决条件X发生的情况下,由关联规则...
分类:其他好文   时间:2015-01-15 22:13:22    阅读次数:203
在字符串中删除特定的字符
题目:输入两个字符串,从第一字符串中删除第二个字符串中所有的字符。例如,输入”I am lavor_zl.”和”I love you.”,则删除之后的第一个字符串变成”amar_z"。要求相对于第一个字符串的长度n时间复杂度为O(n)。 解题思路:用一个bool数组保存是否在第二个字符串中出现的所有字符,数组下标表示字符,这个数组的长度为256,因为C/C++中字符总共有256个。遍历第...
分类:其他好文   时间:2015-01-15 22:13:32    阅读次数:259
LeetCode--Min Stack
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. push(x) -- Push element x onto stack.pop() -- Removes the element on top of the stack.top() -- Get ...
分类:其他好文   时间:2015-01-15 22:12:22    阅读次数:150
布局容器之固定布局
前面我们学习的水平、垂直和表格布局容器,控件会跟着容器大小的变化进行自动适应,而固定布局容器里的控件则不会跟着变化( 则固定不变 )。 固定布局的创建: GtkWidget *gtk_fixed_new(void); 返回值:固定布局容器指针 固定布局容器添加控件: void gtk_fixed_put(  GtkFixed *fixed,...
分类:其他好文   时间:2015-01-15 22:11:09    阅读次数:214
Docker — 云时代的程序分发方式
Docker — 云时代的程序分发方式...
分类:其他好文   时间:2015-01-15 22:12:16    阅读次数:335
Kaggle : Display Advertising Challenge
CriteoLabs  kaggle 展示广告ctr比赛...
分类:其他好文   时间:2015-01-15 22:11:34    阅读次数:2045
走迷宫
1.迷宫中是否存在一条路从(x1,y1)到 (x2,y2), 矩阵为1或0   #include #include #include using namespace std; int t,n,m,x1,y1,x2,y2; int in[1000][1000]; int mx[4]={-1,1,0,0}; int my[4]={0,0,-1,1}; int dfs(int x,int ...
分类:其他好文   时间:2015-01-15 22:12:20    阅读次数:198
灰度图像--频域滤波 傅里叶变换之离散时间傅里叶变换(DTFT)
学习DIP第22天 转载请标明本文出处:http://blog.csdn.net/tonyshengtan,欢迎大家转载,发现博客被某些论坛转载后,图像无法正常显示,无法正常表达本人观点,对此表示很不满意。。。。。。。。 开篇废话     本来是不想写DTFT的,原因1,与前面傅里叶变换(FT)推导过程相似,原因2,在图像处理中DTFT应用不是很广泛,但后来想想还是写出来,原因1,不写出...
分类:其他好文   时间:2015-01-15 22:08:37    阅读次数:248
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!