- 博客(4)
- 收藏
- 关注
原创 自己随便写的八皇后算法
public class Main { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("1111"); placeQueens(8); } static int[] cols; static int way = 0; static void placeQueens(int n) { cols = new int[n]; plac.
2021-05-14 10:36:48 94
原创 C++自己封装一个智能指针
C++的智能指针其实就是封装的一个对象。详细代码如下template <class T>class SmartPointer { T *m_pointer;public: SmartPointer(T *pointer) :m_pointer(pointer) { } //函数用完后析构,把堆空间的指针释放 ~SmartPointer() { if (m_p...
2019-11-13 11:01:28 341
原创 ios中在tableView和scrollView固定某个View的位置,万试万灵
第一次写博客,写得不好请见谅 这个问题一句代码就能搞定,网上很多都写得太复杂,- (void)scrollViewDidScroll:(UIScrollView *)scrollView { self.buttonView.frame = CGRectMake(0, scrollView.contentOffset.y+self.view.frame.si
2015-12-12 09:39:04 918
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人