首页 > 其他
二叉树的构造方法
做Leetcode上面的题目时,遇到二叉树的问题,想要用一个二叉树进行验证,每次构造二叉树都很麻烦,特此写一个构造函数。 1.用数组构造二叉树 void treeNodeConstructor(TreeNode *&root, int data[],int n,int index){//此处root一定要加&,为对指针的引用 /* data为存储节点数据的数组,n为data数组的长度,in...
分类:其他   时间:2015-02-10 15:25:45    收藏:0  评论:0  赞:0  阅读:307
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 larg...
分类:其他   时间:2015-02-10 15:23:55    收藏:0  评论:0  赞:0  阅读:198
减少报表隐藏单元格提升报表性能
如果报表携带大量隐藏格,会对其性能影响很大。这是因为大量隐藏格会占用内存、降低运算速度。而且隐藏单元格除了单元格值外,还记录了很多显示属性值,比如:字体、颜色、显示方式等等。虽然单元格隐藏了,但是这些属性还在,而且带着这些属性计算,也会影响计算速度。          下面这个《1997年订单情况统计》报表就是比较典型的隐藏格影响性能的例子: 这个报表的“比去年同期”是指与去年同月...
分类:其他   时间:2015-02-10 15:23:45    收藏:0  评论:0  赞:0  阅读:240
页写保护
1、进程A和进程B共享页面,代码如下:if (!(pid=fork())) { 压栈操作;//子进程B } if (pid>0){ 压栈操作;//父进程A }        2、我们假设现在系统有一个用户进程A,他自己对应的程序代码已经载入内存中,此时该进程内存中所占用的页面...
分类:其他   时间:2015-02-10 15:23:26    收藏:0  评论:0  赞:0  阅读:389
狗刨学习网协同DataEye报道:手游玩家中女性用户比例占4成
狗刨学习网报道:如果将2013年比作手游元年的话,经历了2014年的疯狂增长,整个手游已经开始趋于理性,2015年不可避免的进入大面积的洗牌期。现今为止,整个移动互联网市场活跃移动设备已经突破9亿台,市场已从增量市场进入存量市场,人口红利已经消失,手游的进入门槛和开发成本将大幅提高。 那么2015年将会有哪些新的趋势,接下去我们从相关数据中做一些解读。 1.手游的玩法将更呈多样化 201...
分类:其他   时间:2015-02-10 15:23:05    收藏:0  评论:0  赞:0  阅读:322
【数据结构】顺序栈
#include #include #include typedef struct SeqStack { int length; int top; char *data; }seqstack; seqstack* CreatStack(seqstack *s,int n) { s=(seqstack *)malloc(sizeof(seqstack)+n*sizeof(char))...
分类:其他   时间:2015-02-10 15:21:45    收藏:0  评论:0  赞:0  阅读:293
二维卷积c代码
二维信号的卷积原理请参考另外一篇文章:http://blog.csdn.net/carson2005/article/details/43702241 这里直接给出参考代码: void Conv2(int** filter, int** arr, int** res, int filterW, int filterH, int arrW, int arrH) { int temp; ...
分类:其他   时间:2015-02-10 15:21:35    收藏:0  评论:0  赞:0  阅读:376
【数据结构】链式栈
#include #include typedef struct LinkStack { int info; struct LinkStack *next; }StackNode; typedef struct LinkTop { struct LinkStack *Top; }LinkTop; LinkTop* creat_Stack(void) { LinkTop *...
分类:其他   时间:2015-02-10 15:21:25    收藏:0  评论:0  赞:0  阅读:250
【数据结构】顺序队列
#include #include #define MAX_DATA 10 typedef struct seqQueue { int data[MAX_DATA]; int front,rear; }seqqueue; void InitQueue(seqqueue *sq) { sq->front=0; sq->rear=0; } int Empty(seqqueue sq...
分类:其他   时间:2015-02-10 15:21:15    收藏:0  评论:0  赞:0  阅读:246
Find Minimum in Rotated Sorted Array II
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. The array may contain duplicates. 解...
分类:其他   时间:2015-02-10 15:21:06    收藏:0  评论:0  赞:0  阅读:262
【数据结构】链式队列
//linkqueue.h#include "stdio.h" #include "stdlib.h" #include #define MAXSZIE 30 struct qNode { char name[MAXSZIE]; char author[MAXSZIE]; int Pages; double Price; char IsForeign; struct qNode * next;...
分类:其他   时间:2015-02-10 15:19:55    收藏:0  评论:0  赞:0  阅读:239
CodeForces 148D. Bag of mice(概率dp啊 )
CodeForces 148D. Bag of mice(概率dp啊 )...
分类:其他   时间:2015-02-10 15:19:25    收藏:0  评论:0  赞:0  阅读:247
ZOJ3430---Detect the Virus
Time Limit: 2 Seconds Memory Limit: 65536 KBOne day, Nobita found that his computer is extremely slow. After several hours’ work, he finally found that it was a virus that made his poor computer s...
分类:其他   时间:2015-02-10 15:19:05    收藏:0  评论:0  赞:0  阅读:182
存储效率:Git > CVS > SVN
Mozilla's CVS repository was 2.7 GB in size; when imported to Subversion the size grew to 8.2 GB, and when put under Git the size got shrunk to 450 MB. For a source code of size 350 MB it's fairly ni...
分类:其他   时间:2015-02-10 15:18:25    收藏:0  评论:0  赞:0  阅读:501
长周期行业(1980 - 2014)数据整理
首先需要声明,本文纯属一个毫无远见和真才实学的小小散户的愚昧见解,仅供参考。...
分类:其他   时间:2015-02-10 15:18:15    收藏:0  评论:0  赞:0  阅读:226
Activiti5第十弹,RepositoryService
package org.mpc.final_activiti; import java.util.List; import org.activiti.engine.IdentityService; import org.activiti.engine.ProcessEngine; import org.activiti.engine.ProcessEngineConfiguration; im...
分类:其他   时间:2015-02-10 15:18:05    收藏:0  评论:0  赞:0  阅读:401
LeetCode Merge Two Sorted Lists
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists. 题意:将两个有序的链表合并成一个链表 思路:每次比较链表头就行了,把比较小的插入新的链表中 /** ...
分类:其他   时间:2015-02-10 15:17:15    收藏:0  评论:0  赞:0  阅读:262
微软职位内部推荐-Senior Software Engineer
微软近期Open的职位:Job Title: Senior Software EngineerWork Location: Suzhou/Beijing, ChinaWe are working on understanding and harnessing the data on the inte...
分类:其他   时间:2015-02-10 15:16:25    收藏:0  评论:0  赞:0  阅读:249
listener does not currently know of SID given in connect descriptor
一次连接数据库怎么也连接不上,查了多方面资料,终于找到答案,总结 首先应该保证数据库的服务启动 在myeclipse的数据库视图中点 右键->new 弹出database driver的窗口, Driver template选择oracle(thin driver), Driver name 输入o...
分类:其他   时间:2015-02-10 15:16:15    收藏:0  评论:0  赞:0  阅读:339
ReportView显示本地报表
from:http://www.cnblogs.com/duanshuiliu/archive/2012/07/13/2589862.html使用ReportView控件可以显示远端Report service的报表,也可以处理生成本地报表,用法也比较简单,下面列举一下简单的步骤。首先使用Repo....
分类:其他   时间:2015-02-10 15:15:55    收藏:0  评论:0  赞:0  阅读:259
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!