ziyouwuxian0
码龄11年
关注
提问 私信
  • 博客:18,770
    社区:1
    18,771
    总访问量
  • 14
    原创
  • 1,252,719
    排名
  • 0
    粉丝
  • 0
    铁粉
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:广东省
  • 加入CSDN时间: 2014-08-13
博客简介:

ziyouwuxian0的博客

查看详细资料
个人成就
  • 获得7次点赞
  • 内容获得3次评论
  • 获得4次收藏
创作历程
  • 1篇
    2020年
  • 14篇
    2017年
TA的专栏
  • Android工程师
    3篇
  • 算法基础
    8篇
  • 异常记录
    3篇
  • react native
兴趣领域 设置
  • 人工智能
    opencv计算机视觉深度学习神经网络图像处理数据分析
  • 最近
  • 文章
  • 代码仓
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

aem.findapp.ApplicationNotFoundError: Local application 'Microsoft Excel.app' not found

最近在用python的xlwings库 操作excel 文档,启动发现报错aem.findapp.ApplicationNotFoundError: Local application 'Microsoft Excel.app' not found了解了xlwings 的原理并针对报错堆栈查看分析源码,发现可以指定是要使用excel还是wps,我的mac上只有wps,所以在启动xlwing...
原创
发布博客 2020.01.15 ·
2970 阅读 ·
5 点赞 ·
3 评论 ·
4 收藏

react native 将android studio external libraries里的库替换成自己的编译的库

最近创建了个react native的工程,用android studio 打开android工程的时候发现莫名其妙多了okhttp的库,或者其他没有在gradle文件中引用的库。因为个人对okhttp的源码稍微改过一点,想用自己的jar包替换RN引用的jar,折腾了一下,所以时间就是这么被浪费的。不要再问我为什么干不完活了首先:在 module的build.gradle  文
原创
发布博客 2017.08.07 ·
1905 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

indexheap

function IndexHeap(data){this.arr=new Array();this.reverse=new Array();for(var i=0;ithis.arr[i]=i;this.reverse[i]=-1;}this.count=0;this.change=function(i,newItem){data[i]=newItem;
原创
发布博客 2017.07.16 ·
285 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

react native 问题记录

1.error: bundling failed: "Unable to resolve module `AccessibilityInfo` from `/Users/apple/WebstormProjects/carracing2/node_modules/react-native/Libraries/react-native/react-native-implementation.js
原创
发布博客 2017.07.13 ·
6564 阅读 ·
1 点赞 ·
0 评论 ·
4 收藏

(七)JavaScript实现堆排序

function Heap(data){this.arr=data;this.count=0;this.size=function(){return this.count;};this.isEmpty=function(){return this.count==0;}this.insert=function(item){this.arr[this.c
原创
发布博客 2017.07.09 ·
211 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

(六)c++和JavaScript实现二叉堆

c++实现#ifndef INC_05_HEAPIFY_HEAP_H#define INC_05_HEAPIFY_HEAP_H#include #include using namespace std;templateclass MaxHeap{private:    Item *data;    int co
原创
发布博客 2017.07.07 ·
225 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

(五)c++和JavaScript实现快速排序

c++实现#include #include #include #include "SortTestHelper.h"#include "MergeSort.h"#include "InsertionSort.h"using namespace std;template int _partition(T arr[], int l,
原创
发布博客 2017.06.30 ·
195 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

(四)c++和JavaScript实现归并排序

c++实现#include #include "SortTestHelper.h"#include "InsertionSort.h"using namespace std;templatevoid __merge(T arr[], int l, int mid, int r){       T aux[r-l+1];
原创
发布博客 2017.06.14 ·
206 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

(三)c++和javascript实现希尔排序

javascript      希尔排序         function hillSort(arr){    var n=arr.length;for(var gap=n/2;gap>0;gap/=2){for(var i=0;ifor(var j=i;iif(ar
原创
发布博客 2017.06.03 ·
254 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

Could not find the AndroidManifest.xml file,...found usingdummy file [file:///home/malachi/work/Anno

Could not find the AndroidManifest.xml file,...found usingdummy file [file:///home/malachi/work/AnnotationTest/target/gener.android studio 解决这个异常的办法,参考http://www.cnblogs.com/deman/p/493551
转载
发布博客 2017.06.01 ·
1547 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

(二)c++和JavaScript实现插入排序

c++#include #include using namespace std;templatevoid insertionSort(T arr[], int n){    for( int i = 1 ; i         // 寻找元素arr[i]合适的插入位置           for( int j = i ;
原创
发布博客 2017.05.29 ·
229 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

(一)c++ 和javascript 实现选择排序

c++实现#include using namespace std;templatevoid selectionSort(T arr[], int n){    for(int i = 0 ; i         int minIndex = i;        for( int j = i + 1 ; j
原创
发布博客 2017.05.28 ·
216 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Android recyclerview源码分析(二)

这篇文章分析这3个类这3个类是和列表item的drag和swipe手势有关的类,通过这3个类可实现类似dragsortlistview的功能。先看下用法ItemTouchHelper.Callback callback = new SimpleItemTouchHelperCallback(adapter);mItemTouchHelper = new ItemTouch
原创
发布博客 2017.04.14 ·
985 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Android recyclerview源码分析(一)

源码分析基于22.2.1版本先预览一下recyclerview 相关的类 今天先分析SortedList 和SortedListAdapterCallback 先看下这两个类的用法 SortedList mDataList=new SortedList   public class ObjectListCallback extends SortedLis
原创
发布博客 2017.04.13 ·
911 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

Android模仿摩拜单车车型选择按钮

个人感觉Tablayout里的indicator左右滑动和摩拜单车里按钮背景左右滑动很像,所以我的思路是修改Tablayout里indicator的位置和形状,把indicator的位置放在tab下面,并且修改indicator的形状为圆角矩形,那接下来就是具体实现啦我采用的方法是改写material design下TabLayout的源码,修改的地方只有两处,都位于TabLayout内部类 
原创
发布博客 2017.03.22 ·
2069 阅读 ·
1 点赞 ·
0 评论 ·
1 收藏
加载更多