- 博客(33)
- 资源 (13)
- 收藏
- 关注
原创 面向应用的离线计算系统:周期任务&组合策略
业务应用系统想大批量利用数据中心的计算能力跑数,回传结果。比如一个个地区的详情数据。而大数据平台通常是调度平台系统,和业务系统是两个独立的平台系统,如何建立交互方式。业务有个性化的实验策略,需要组合业务条件达到实验效果。比如捞取不同的数据实验算法策略。
2024-01-09 00:12:12 535
原创 大数据技术架构
大数据技术栈虽然比较多,但可以抽象为输入(数据接入)--处理(数据处理、数据分析)--输出(数据应用)。工作角色分工,数据处理以数据仓库开发人员为主,数据分析以数据分析师为主,其他所有组件、系统、技术相关归为数据平台。
2024-01-07 20:47:55 1400
原创 centos7安装图形界面
安装完成后查看ipip addr 不可用配置IP:vi /etc/sysconfig/network-scripts/ifcfg-ens33sudo service network restartyum -y install wgetyum -y install setupyum -y install perlcentos7安装图形界面:yum groupinstall "GNOME Deskto
2018-01-19 13:29:45 330
转载 双向链表
#include "stdafx.h"#include #include #include //定义结点typedef struct __Node{ int data; struct __Node *pre; struct __Node *next;}Node;//定义带头结点的双向链表typedef struct __doublyLinkedList{ Node *
2014-10-19 20:51:07 493
原创 单链表经典实现
#include "stdafx.h"#include #include #include typedef struct Node{ int data; struct Node *next;} Node, *LinkedList;LinkedList createH(int arr[]){ //int arr[5] = {2, 4, 6, 1, 3}; LinkedL
2014-10-14 22:15:25 521 1
原创 练习
1、链表求两个有序链表的交集找出倒数第k个元素(或中间元素)链表排序http://www.vogella.com/code/index.htmlhttp://www.blogjava.net/zzheng/archive/2008/09/05/227305.html国际化http://nenyalanye-1.iteye.co
2012-08-14 00:01:58 548
转载 链表集锦
/* LNode表示该结构类,是该结构的一个实例LinkList是该结构类的指针,指代的是一个实例的地址他们的区别在于访问其成员不一样:LNode.dataLinkList->data举个通俗的例子:人小明站在河边。LNode相当于小明LinkList相当于 在河边的那个人当 LinkList=&LNode 时候就表示小明在河边 */typedef struct LNode
2012-08-13 07:11:17 394
转载 BM算法
#include #include #include #define MAX_NUM_CHAR 256int *makeSkip(char *pcPatternStr){ int iCnti; int iPatternLen = strlen(pcPatternStr); int *piSkip = (int*)malloc(MAX_NUM_CHAR *
2012-08-11 15:21:15 380
原创 KMP算法
#include#include#include int * geNext(char *pucPatternStr){ int iPatternLen; int *piNext; int iCnti; int iCntj; iCnti = 0; iCntj = -1; iPatternLen = strlen(pucPat
2012-08-11 12:08:52 336
转载 全排列集锦
/*1、递归全排列2、几种排列组合的算法3、堆全排列*/////////////////////////////////////////////////////////////////////////////////递归全排列#include int n = 0; void swap(int *a, int *b) { int m;
2012-07-31 23:28:36 535
转载 栈集锦
/*1、顺序栈2、双栈3、链栈4、顺序栈cpp*/////////////////////////////////////////////////////////////////////////////////////////顺序栈//Stack.h#define INFINITY 65535#define MAXSIZE 100typedef int ElemType;
2012-07-31 23:27:24 380
转载 哈希表集锦
/* 1、哈希表的地址链表法 *///////////////////////////////////////////////////////////////////////////////////////////哈希表的地址链表法/* 散列表(Hash table,也叫哈希表),是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一
2012-07-31 22:54:09 369
转载 字符串集锦
/* 1、使用stringstream分割字符串2、KMP字符匹配算法3、Kmp字符串匹配算法改进版4、KMP算法之二*////////////////////////////////////////////////////////////////////////////////使用stringstream分割字符串,可以逐个输出#include #include #incl
2012-07-31 22:53:06 331
转载 树集锦
/* 1、二叉树的遍历:前序,中序,后序,层序--包括递归和非递归实现2、AVL树3、二叉查找树 */////////////////////////////////////////////////////////////////////////////////////////////二叉树的遍历:前序,中序,后序,层序--包括递归和非递归实现//tree.h/********
2012-07-31 22:52:08 384
原创 java真的开源吗?NO!NO!NO!
作为java初学者我真是失望!想从网上找些稍微大型的java方面的例子,一个都没!那些人整天喊着java开源,除了那些架构让那些大牛们独自享受,我们难以望其项背。倒是微软的产品虽然不开源但是入门例子相当多!java压根没法和php开源程度相比!真是羞辱!
2012-02-25 23:05:17 708
转载 stack用法
//stack用法using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace ConsoleApplication1{ class Program { static void Main(string[] args)
2011-11-04 13:06:30 1646
转载 SortedList用法
//SortedListusing System;using System.Collections.Generic;using System.Text;using System.Collections;namespace ConsoleApplication1{ class Program { public static void Main()
2011-11-04 13:05:53 661
转载 Queue用法
//Queue用法using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace ConsoleApplication1{ class Program { static void Main(string[] args)
2011-11-04 13:05:08 450
转载 Hashtable用法
//Hashtable用法using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace ConsoleApplication1{ class Program { public static void Main()
2011-11-04 13:04:27 404
转载 HashMap用法
//HashMappackage com.mo.test;import java.util.Calendar;import java.util.*;public class HashMapTest{ public static void main(String[] args) { HashMap hashmap = new HashMap(); for (int i =
2011-11-04 13:03:51 738
转载 ArrayList 用法
//ArrayList 用法using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication{ class Program { static v
2011-11-04 13:03:07 349
转载 委托例子之二
//主函数 Program.csusing System;using System.Collections.Generic;using System.Text;namespace Delegate{ class Program { static void Main() { Heater heater = new H
2011-11-04 13:02:14 390
转载 委托例子
//委托例子/*委托是一个类,它定义了方法的类型,使得可以将方法当作另一个方法的参数来进行传递,这种将方法动态地赋给参数的做法,可以避免在程序中大量使用If-Else(Switch)语句,同时使得程序具有更好的可扩展性。*///之一using System;// Declare delegate -- defines required signature:delegate void
2011-11-04 13:01:19 415
转载 存储过程
--创建存储过程create procedure p1() select * from Users--JOIN用法select name,place from Usersinner join Addresson Users.ID=address.userid-- =============================================-- Author:
2011-11-04 12:58:43 684
转载 桥梁模式
//桥梁模式namespace CarRunOnRoad_Bridge_ { //抽象路 public abstract class AbstractRoad { protected AbstractCar car; public AbstractCar Car { set
2011-11-04 12:56:49 385
转载 门面模式
//门面模式 class Users { public void CheckMoney() { Console.WriteLine("Checking User's Account......"); } public void CutDownMoney() {
2011-11-04 12:55:56 332
转载 代理模式
//代理模式//接口实现: interface IProxy { string Function1(); string Function2(); }// 远程对象实现: /// /// 模拟的远程对象 /// public class LongDistanceClass:IProxy {
2011-11-04 12:55:17 270
原创 各类排序算法
//冒泡排序,稳定排序void BubbleFun(int arr[], int n){ int i,j;int temp; for(i=1; i<n; i++) for(j=0; j<n-i; j++){ if(arr[i]<arr[j]){ temp = arr[i];arr[j] = arr[i];arr[j] =temp;}
2011-11-04 12:48:03 482
转载 c++双向链表
#include "stdafx.h"#include//定义链表的结构体。struct MyList{ int nData; MyList* pPre; MyList* pNext;};//全局的变量,保存链表的头MyList* g_pHead = NULL;//判断链表是否为空bool IsEmpty(){ //如果头指针指向的是空,链
2011-11-04 12:42:55 404
转载 c++模板单循环链表
#include "stdafx.h"#includeusing namespace std;/*1 应用模板 2使用class定义node,而不是struct *///链表节点templateclass ListNode{public://引用public,避免了使用get,set所带来的麻烦 T data; ListNode*next;public: ListNode(
2011-11-04 12:42:03 1960
转载 c++链表添加删除修改
#include "stdafx.h"#include#include "assert.h"#include "windows.h"using namespace std;int _tmain(int argc, _TCHAR* argv[]){ return 0;}#define COUNT 3//定义一个节点结构体struct NODE{ unsigne
2011-11-04 12:41:02 4202
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人