Bitmap Posted on 2018-12-06 | Visitors: 输入:一个最多包含n个unsigned int型整数的数组,每个数都小于n,其中n=10,000,000。没有重复的整数,没有其他数据与该整数相关联。输出: 按升序排列这些数。约束:有 1MB多(不超 ... Read more »
Sort a Special Array Posted on 2018-12-02 | Visitors: 12345678910111213141516171819202122232425262728293031323334353637383940414243444546# Cloudin云英 面试题d ... Read more »
Transformer Posted on 2018-12-01 | Visitors: 12345678910111213141516171819202122232425262728293031323334# Cloudin 云英 面试题def transformer(x, y): ... Read more »
Similar Strings Posted on 2018-12-01 | Visitors: 12345678910111213141516171819202122232425262728# Cloudin 云英 面试题def is_similar(A, B): dict_a = ... Read more »
Data Structure Alignment and Padding in C Posted on 2018-12-01 | Visitors: 12345678910111213141516171819202122232425262728293031// Coundin云英 面试#include <stdio.h>typedef ... Read more »
Remove Special Substrings in a String Posted on 2018-12-01 | Visitors: 删除字符串中的“b”和“ac”,即保证删除后的结果中不出现“b”和“ac”。例如:acbac ==> “”;aaac ==> aa;ababac ==> aa;bbbbd ==> ... Read more »
System Path of Python in Windows and Ubuntu Posted on 2018-11-30 | Visitors: 1234import sys# print(sys.path)print("\n".join(sys.path)) Windows(PyCharm)123456789C:\Users\lixiang ... Read more »
Sort Strings in C Posted on 2018-11-29 | Visitors: 问题描述The function strlwr() is a function from the Microsoft c library and does not work in the standa ... Read more »
Built-in Types in Python Posted on 2018-11-28 | Visitors: 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545 ... Read more »
Shuffle a List in Place Posted on 2018-11-27 | Visitors: 12345from random import shufflemylist = [i for i in range(0, 10)]print(mylist)shuffle(mylist)print(m ... Read more »