自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Viking的博客

不积跬步无以至千里 不积小流无以成江海

  • 博客(16)
  • 资源 (4)
  • 收藏
  • 关注

原创 【每日一题】31. Next Permutation

题目描述Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).The replacemen

2020-07-31 23:36:22 157

原创 【每日一题】30. Substring with Concatenation of All Words

题目描述You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a concatenation of each word in words exactly once and without any intervening characters.Example 1:Input:

2020-07-30 23:11:05 209

原创 【每日一题】29. Divide Two Integers

题目描述Given two integers dividend and divisor, divide two integers without using multiplication, division and mod operator.Return the quotient after dividing dividend by divisor.The integer division should truncate toward zero, which means losing its frac

2020-07-29 23:58:29 840

原创 【每日一题】28. Implement strStr()

问题描述Implement strStr().Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Example 1:Input: haystack = "hello", needle = "ll"Output: 2Example 2:Input: haystack = "aaaaa", needle = "bba"Output: -1

2020-07-28 22:58:37 149

原创 【每日一题】27. Remove Element

题目描述Given an array nums and a value val, remove all instances of that value in-place and return the new length.Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.The order of elem

2020-07-27 22:35:09 136

原创 【LeetCode每日一题】26. Remove Duplicates from Sorted Array

题目描述Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.

2020-07-27 07:47:28 161

原创 计算广告笔记-受众定向核心技术

受众定向技术分类总体上看,按照计算框架的不同,这些受众定向技术可以分为3种类型:用户标签,可以表示成t(u)形式的标签,以用户历史行为数据为依据,为用户打上的标签;上下文标签,可以表示成t©形式的标签,根据用户当前的访问行为得到的即时标签;定制化标签,可以表示成t(a, u)形式的标签,也是一种用户标签,不同之处在于是针对某一特定广告主而言的,必须根据广告主的某些属性或数据来加工。以上各种定向中,地域定向、频道定向和上下文定向属于t©的定向方式;人口属性、行为定向属于t(u)的定向方式;重定

2020-07-25 23:06:10 527

原创 【LeetCode每日一题】25. Reverse Nodes in k-Group

问题描述Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple of k then left-out nodes in

2020-07-25 23:01:29 96

原创 计算广告笔记-合约广告核心技术

合约广告的关键特征,是广告投放的价格和量由双方协商约定。合约广告的重点形式是按指定受众购买的、按CPM计费的展示量合约广告。展示量合约广告的投放系统统称为担保式投送系统。它依赖于受众定向、流量预测、点击率预测这3项基本技术,并采用在线分配的方式完成实时决策。广告排期系统对于按CPT结算的广告位合约,媒体一般采用广告排期系统来管理和执行。广告排气系统的一般技术方案是将广告素材按照预先确定的排期直接插入媒体页面,并通过**内容分发网络(CDN)**加速访问。这样可以使广告投放延迟很小,也没有服务器端的压力和

2020-07-24 22:58:26 421

原创 【LeetCode每日一题】24. Swap Nodes in Pairs

问题描述Given a linked list, swap every two adjacent nodes and return its head.You may not modify the values in the list’s nodes, only nodes itself may be changed.Example:Given 1->2->3->4, you should return the list as 2->1->4->3.给定一个链表

2020-07-24 22:52:59 118

原创 【LeetCode每日一题】23. Merge k Sorted Lists

题目描述Merge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.Example:Input:[ 1->4->5, 1->3->4, 2->6]Output: 1->1->2->3->4->4->5->6合并k个有序单链表,然后返回这个新链表。分析时间复杂度、空间复杂度。

2020-07-23 22:59:43 163

原创 计算广告笔记-计算广告技术概览

个性化系统框架计算广告是根据个体用户信息投送个性化内容的典型系统之一。在介绍计算广告系统的架构之前,先看看一般的个性化系统是如何构成的。由4个主题部分构成:用于实时响应请求,完成决策的在线投放引擎;离线的分布式计算数据处理平台;用于在线实时反馈的流计算平台;连接和运转以上3部分数据流的数据高速公路。协作流程是:在线投放系统的日志接入数据高速公路,再由数据高速公路快速转运到离线数据处理平台和在线流计算平台;离线数据处理平台周期性地以批处理方式加工过去一段时间的数据,得到人群标签和其他模型参

2020-07-22 18:34:49 515

原创 【LeetCode每日一题】22. Generate Parentheses

题目描述Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, given n = 3, a solution set is:[ "((()))", "(()())", "(())()", "()(())", "()()()"]数字 n 代表生成括号的对数,请你设计一个函数,用于能够生成所有可能的并且

2020-07-22 18:30:10 147

原创 【LeetCode每日一题】21. Merge Two Sorted Lists

题目描述Merge two sorted linked lists and return it as a new sorted list. The new list should be made by splicing together the nodes of the first two lists.Example:Input: 1->2->4, 1->3->4Output: 1->1->2->3->4->4通过合并两个有序链表生成一个新的

2020-07-21 22:48:31 164

原创 计算广告笔记07-数据加工与交易

提高定向的精准程度与人群覆盖率的决定性因素是数据的来源与质量。有价值的数据来源(1)用户标识。对广告而言,如何确定哪些行为来自于同一个用户是非常关键的问题。对浏览器行为,最常使用的用户标识是cookie,但由于存在同时使用多个浏览器、cookie过期或用户主动消除cookie的情况,这种用户标识的长期一致性不算太好。但对广告来说,起关键作用的是用户近期内的行为,所以用cookie作为用户标识还是为业界广泛采用的基础方案。在移动互联的情形下,iOS和Android在应用内广告使用的用户ID有所不同:

2020-07-21 22:31:23 217

原创 计算广告笔记06-程序化交易广告

RTB的产生使得广告市场向着开放的竞价平台的方向发展,这样的平台就是广告交易平台,ADX,其主要特征是用RTB的方式实时得到广告候选,并按竞价逻辑完成投放决策。与广告交易平台对应的采买方为需求方平台即DSP。在程序化交易市场中,需求方对于流量的选择和控制能力达到了极致。从需求方来看,定制化的用户划分能力使得广告主可以像优化自己的推荐系统那样优化广告购买,唯一的区别是这个推荐系统是放在站外的。动态出价的产品需求以及广告主预算范围内的套利,要求DSP具备点击率预测、点击价值估计、流量预测、站外推荐等多方面的.

2020-07-14 18:51:41 1423

内存模拟管理

内存模拟管理,BF FF,动态模拟实现。实现线程的分配,显示分配后的空闲分区信息表。链表

2016-01-03

任务管理器实现方案具体介绍

制作自己的任务管理器实现方案,出错处理和用到函数的简单介绍。自己的心得体会。备注:还有不足之处,请私聊。

2015-12-15

c++任务管理器

做自己的任务管理器,实现查看任务,结束任务,查看进程,结束进程,cpu利用率画图,动态显示。MFC框架,c++实现,vs2013编译环境。

2015-12-15

任务管理器

简单的任务管理器,实现查看进程,结束进程。MFC设计,c++编码实现,vs2013编译环境。

2015-12-15

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除