As_June
码龄8年
求更新 关注
提问 私信
  • 博客:7,014
    7,014
    总访问量
  • 20
    原创
  • 0
    粉丝
  • 23
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:广东省
加入CSDN时间: 2017-09-09
博客简介:

As_June的博客

查看详细资料
个人成就
  • 获得3次点赞
  • 内容获得2次评论
  • 获得0次收藏
  • 博客总排名925,171名
创作历程
  • 1篇
    2020年
  • 1篇
    2018年
  • 18篇
    2017年
成就勋章
TA的专栏
  • cuda
    1篇
  • leetcode
    18篇

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 0

TA参与的活动 0

创作活动更多

新星杯·14天创作挑战营·第13期

这是一个以写作博客为目的的创作活动,旨在鼓励大学生博主们挖掘自己的创作潜能,展现自己的写作才华。如果你是一位热爱写作的、想要展现自己创作才华的小伙伴,那么,快来参加吧!我们一起发掘写作的魅力,书写出属于我们的故事。我们诚挚邀请你们参加为期14天的创作挑战赛!注: 1、参赛者可以进入活动群进行交流、互相鼓励与支持(开卷),虚竹哥会分享创作心得和涨粉心得,答疑及活动群请见:https://bbs.csdn.net/topics/619781944 【进活动群,得奖概率会更大,因为有辅导】 2、文章质量分查询:https://www.csdn.net/qc

75人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

工作流管理模型、方法和系统(英文原版附习题答案+中文版本).zip

发布资源 2019.10.13 ·
zip

lnk1181无法打开输入文件_cuda.obj问题

vs更新后重新生成解决方案一直出现这问题"lnk1181 无法打开文件xxx_cuda.obj"检查发现是vs更新导致cl.exe路径发生变化,更改后bug解决。
原创
博文更新于 2020.04.04 ·
1808 阅读 ·
3 点赞 ·
2 评论 ·
0 收藏

Min Cost Climbing Stairs

Min Cost Climbing Stairs--LeetCode(原题链接:点击打开链接)On a staircase, the i-th step has some non-negative costcost[i] assigned (0 indexed).Once you pay the cost, you can either climb one or two steps
原创
博文更新于 2018.01.07 ·
304 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

STINGY SAT

8.3 STINGY SAT is the following problem: given a set of clauses(each a disjunction of literals) and an integer k, find a satifying assignment in which at most k variables are true, if such an assignme
原创
博文更新于 2017.12.31 ·
654 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Letter Combinations of a Phone Number--LeetCode

Letter Combinations of a Phone Number(原文链接:点击打开链接)Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on th
原创
博文更新于 2017.12.24 ·
205 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

3Sum Closest -- LeetCode

3Sum Closest(原题链接:点击打开链接)Given an array S of n integers, find three integers inS such that the sum is closest to a given number, target. Return the sum of the three integers. You may assum
原创
博文更新于 2017.12.17 ·
328 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

3Sum--LeetCode

3Sum(原题链接:点击打开链接)Given an array S of n integers, are there elementsa, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.Note: The sol
原创
博文更新于 2017.12.11 ·
197 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Longest Common Prefix--LeetCode

Longest Common Prefix(原题链接:点击打开链接)Write a function to find the longest common prefix string amongst an array of strings.Solution:class Solution {public: string longestCommonPrefix(vector&
原创
博文更新于 2017.12.11 ·
258 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Roman to Integer

Roman to Integer Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.Solution:一种很粗暴的解法,罗列所有可能出现的情况:class Solution {public: int
原创
博文更新于 2017.11.26 ·
185 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Integer to Roman--LeetCode

Integer to Roman(原题链接:点击打开链接)Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999.Solution:class Solution {public: string i
原创
博文更新于 2017.11.19 ·
193 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Container With Most Water--LeetCode

Container With Most Water(原题链接:点击打开链接)Given n non-negative integers a1,a2, ..., an, where each represents a point at coordinate (i,ai). n vertical lines are drawn such that the two endpoints
原创
博文更新于 2017.11.11 ·
269 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Regular Expression Matching--LeetCode

Regular Expression Matching(原题链接:点击打开链接)Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element
原创
博文更新于 2017.11.11 ·
239 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

String to Integer (atoi)--LeetCode

String to Integer (atoi)(原题链接:点击打开链接)Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and as
原创
博文更新于 2017.10.29 ·
321 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Palindrome Number--LeetCode

Palindrome Number(原题链接:点击打开链接)Determine whether an integer is a palindrome. Do this without extra space.click to show spoilers.Some hints:Could negative integers be palindromes? (ie, -1)
原创
博文更新于 2017.10.22 ·
227 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

ZigZag Conversion--LeetCode

ZigZag Conversion(原题链接:点击打开链接)The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legib
原创
博文更新于 2017.10.15 ·
275 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Longest Palindromic Substring--LeetCode

Longest Palindromic Substring(原题链接:点击打开链接)Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.Example: Input: "babad"Output
原创
博文更新于 2017.10.15 ·
199 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Median of Two Sorted Arrays

Median of Two Sorted ArraysThere are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n
原创
博文更新于 2017.10.08 ·
286 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Reverse Integer--LeetCode

Reverse Integer(原题链接:点击打开链接)Reverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321 click to show spoilers.Have you thought about this?Here are some goo
原创
博文更新于 2017.10.01 ·
233 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Longest Substring Without Repeating Characters--LeetCode

Longest Substring Without Repeating Characters(原题链接:点击打开链接)Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc
原创
博文更新于 2017.09.24 ·
242 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Add Two Numbers--LeetCode

Add Two Numbers(原题链接:点击打开链接)You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit
原创
博文更新于 2017.09.17 ·
252 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏
加载更多